1 Star 0 Fork 0

xmasker/Knowledge Graph

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
isoForest.py 741 Bytes
一键复制 编辑 原始数据 按行查看 历史
xmasker 提交于 2023-07-24 16:10 . kmeans
import pandas as pd
from sklearn.ensemble import IsolationForest
from sklearn.preprocessing import StandardScaler
# 加载日志数据
log_data = pd.read_csv('log_data.csv')
# 提取特征
features = log_data[['connection_counts', 'connection_duration', 'has_periodicity']]
# 标准化特征数据
scaler = StandardScaler()
scaled_features = scaler.fit_transform(features)
# 使用孤立森林算法进行异常检测
isolation_forest = IsolationForest()
isolation_forest.fit(scaled_features)
# 获取异常得分
outlier_scores = isolation_forest.decision_function(scaled_features)
# 设置阈值来确定高危节点
threshold = -0.5
high_risk_nodes = log_data[outlier_scores < threshold]
# 输出高危节点
print(high_risk_nodes)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xmasker/knowledge-graph.git
git@gitee.com:xmasker/knowledge-graph.git
xmasker
knowledge-graph
Knowledge Graph
main

搜索帮助