|
@@ -13,6 +13,8 @@
|
|
|
|
|
|
|
|
## 📂 目录结构说明
|
|
## 📂 目录结构说明
|
|
|
|
|
|
|
|
|
|
+```text
|
|
|
|
|
+项目根目录/
|
|
|
├── 核心引擎层 (通用代码)
|
|
├── 核心引擎层 (通用代码)
|
|
|
│ ├── data_processing.py # Layer 1: 时序数据预处理与双重异常量化(绝对阈值+动态MAD)
|
|
│ ├── data_processing.py # Layer 1: 时序数据预处理与双重异常量化(绝对阈值+动态MAD)
|
|
|
│ ├── causal_structure.py # Layer 2: 基于工艺层级与设备约束的物理因果图构建
|
|
│ ├── causal_structure.py # Layer 2: 基于工艺层级与设备约束的物理因果图构建
|
|
@@ -25,10 +27,11 @@
|
|
|
│ ├── config.yaml # 锡山专属配置文件(路径、算法超参数、传感器列表)
|
|
│ ├── config.yaml # 锡山专属配置文件(路径、算法超参数、传感器列表)
|
|
|
│ ├── sensor_threshold.xlsx # 锡山传感器物理阈值与层级定义表
|
|
│ ├── sensor_threshold.xlsx # 锡山传感器物理阈值与层级定义表
|
|
|
│ ├── abnormal_link.xlsx # 锡山专家历史异常链路知识库(用于BC预训练)
|
|
│ ├── abnormal_link.xlsx # 锡山专家历史异常链路知识库(用于BC预训练)
|
|
|
-│ ├── ppo_tracing_model.pth # 训练生成的锡山专属 PPO 模型权重
|
|
|
|
|
|
|
+│ └── ppo_tracing_model.pth # 训练生成的锡山专属 PPO 模型权重
|
|
|
│
|
|
│
|
|
|
└── longting/ # 🏆 龙亭水厂专属工作空间
|
|
└── longting/ # 🏆 龙亭水厂专属工作空间
|
|
|
├── config.yaml
|
|
├── config.yaml
|
|
|
├── sensor_threshold.xlsx
|
|
├── sensor_threshold.xlsx
|
|
|
├── abnormal_link.xlsx
|
|
├── abnormal_link.xlsx
|
|
|
- ├── ppo_tracing_model.pth
|
|
|
|
|
|
|
+ └── ppo_tracing_model.pth
|
|
|
|
|
+```
|