Merge PR #101-#109 (EPIC #5 模型框架 8 子任务:recipe/feature/quality/anomaly/cross-process/pipeline/registry/PoC,命名空间化整合)

This commit is contained in:
2026-08-05 08:26:02 +08:00
parent a0b21866fe
commit 8a407fc0ad
27 changed files with 7750 additions and 17 deletions
@@ -0,0 +1,24 @@
{
"name": "resin-reactor-anomaly",
"backbone": "iforest",
"industry": "吸附树脂(已终验化工新材料AI平台 baseline)",
"hyperparams": {
"n_estimators": 100,
"max_samples": "auto",
"contamination": "auto",
"random_state": 7
},
"feature_columns": [
"reactor_temp",
"reactor_pressure",
"flow_rate",
"ph_value",
"conversion_rate"
],
"threshold_policy": "contamination",
"contamination": 0.05,
"sigma": 3.0,
"recall_floor": 0.95,
"false_alarm_ceil": 0.05,
"notes": "PRD 5.3 ③ 异常检测:树脂反应釜工况/质量异常预警,复用已交付化工AI平台 baseline 超参。"
}
@@ -0,0 +1,26 @@
{
"name": "ti-cl4-furnace-impurity-anomaly",
"backbone": "iforest",
"industry": "海绵钛氯化车间(Template-Ti 一期)",
"hyperparams": {
"n_estimators": 150,
"max_samples": "auto",
"contamination": "auto",
"random_state": 42
},
"feature_columns": [
"furnace_temp",
"furnace_pressure",
"cl2_flow",
"ti_feed_rate",
"impurity_fe",
"impurity_v",
"impurity_si"
],
"threshold_policy": "contamination",
"contamination": 0.05,
"sigma": 3.0,
"recall_floor": 0.95,
"false_alarm_ceil": 0.05,
"notes": "PRD 5.3 ③ 异常检测:氯化车间炉层杂质/工况异常预警(关联 EPIC #10 炉层杂质预警),验收检出率≥95%、误报率≤5%(PRD 第6章里程碑)。一期数据门槛:≥6个月标注(DCS+LIMS对接后补标)。"
}
@@ -0,0 +1,92 @@
{
"name": "resin-cross-process-opt",
"industry": "吸附树脂生产(Template-Resin 并行)",
"solver": "random",
"solver_params": {
"n_samples": 400,
"seed": 42
},
"stages": [
{
"name": "反应",
"decision_vars": [
{
"name": "react_temp",
"low": 60,
"high": 85,
"step": 5,
"unit": "℃",
"default": 70
},
{
"name": "react_time",
"low": 180,
"high": 300,
"step": 30,
"unit": "min",
"default": 240
}
],
"transfer_vars": ["conversion"],
"proxy": "0.5 * (react_temp - 60) / 25 + 0.5 * (react_time - 180) / 120"
},
{
"name": "水洗",
"decision_vars": [
{
"name": "wash_cycles",
"low": 3,
"high": 6,
"step": 1,
"unit": "次",
"default": 4
}
],
"transfer_vars": ["impurity_removed"],
"proxy": "conversion * 0.7 + (wash_cycles - 3) / 3 * 0.3"
},
{
"name": "干燥",
"decision_vars": [
{
"name": "dry_temp",
"low": 80,
"high": 120,
"step": 10,
"unit": "℃",
"default": 100
}
],
"transfer_vars": [],
"proxy": ""
}
],
"constraints": [
{
"expr": "react_temp",
"op": "<=",
"bound": 85,
"label": "反应温度上限(防暴聚)"
},
{
"expr": "dry_temp",
"op": ">=",
"bound": 80,
"label": "干燥温度下限(保证含水率)"
},
{
"expr": "wash_cycles",
"op": ">=",
"bound": 3,
"label": "水洗次数下限"
}
],
"objective": {
"expr": "impurity_removed - 0.002 * react_time - 0.003 * dry_temp",
"sense": "max",
"weight": 1.0,
"label": "综合品质(去杂质 - 能耗时耗)"
},
"acceptance_floor": 0.60,
"notes": "PRD 5.3 ③ 跨工序寻优:反应→水洗→干燥三工序串联,最大化综合品质(去杂质扣减能耗/时耗),验收采纳率≥60%。"
}
@@ -0,0 +1,92 @@
{
"name": "ti-cl4-cross-process-opt",
"industry": "海绵钛氯化车间(Template-Ti 一期)",
"solver": "grid",
"solver_params": {
"max_per_var": 6,
"max_total": 5000
},
"stages": [
{
"name": "氯化",
"decision_vars": [
{
"name": "chlorination_temp",
"low": 850,
"high": 950,
"step": 20,
"unit": "℃",
"default": 870
},
{
"name": "cl2_flow",
"low": 180,
"high": 260,
"step": 20,
"unit": "Nm3/h",
"default": 220
}
],
"transfer_vars": ["ti_cl4_yield"],
"proxy": "0.4 * (chlorination_temp - 850) / 100 + 0.6 * (cl2_flow - 180) / 80"
},
{
"name": "精制",
"decision_vars": [
{
"name": "refine_temp",
"low": 135,
"high": 150,
"step": 5,
"unit": "℃",
"default": 140
}
],
"transfer_vars": ["purity"],
"proxy": "ti_cl4_yield * 0.8 + (refine_temp - 135) / 15 * 0.2"
},
{
"name": "还原",
"decision_vars": [
{
"name": "reduction_pressure",
"low": 0.2,
"high": 0.5,
"step": 0.1,
"unit": "MPa",
"default": 0.3
}
],
"transfer_vars": [],
"proxy": ""
}
],
"constraints": [
{
"expr": "chlorination_temp",
"op": "<=",
"bound": 950,
"label": "氯化温度安全上限"
},
{
"expr": "cl2_flow",
"op": ">=",
"bound": 180,
"label": "氯气流量下限(保证反应)"
},
{
"expr": "reduction_pressure",
"op": "<=",
"bound": 0.5,
"label": "还原压力安全上限"
}
],
"objective": {
"expr": "purity - 0.01 * cl2_flow - 0.005 * chlorination_temp",
"sense": "max",
"weight": 1.0,
"label": "综合收率(纯度 - 能耗惩罚)"
},
"acceptance_floor": 0.60,
"notes": "PRD 5.3 ③ 跨工序寻优:氯化→精制→还原三工序串联,最大化综合收率(纯度扣减能耗),验收采纳率≥60%(PRD 第6章里程碑)。"
}
@@ -0,0 +1,21 @@
{
"name": "resin-quality",
"backbone": "gbdt",
"industry": "吸附树脂(已终验化工新材料AI平台 baseline)",
"hyperparams": {
"n_estimators": 100,
"max_depth": 3,
"learning_rate": 0.1,
"random_state": 7
},
"feature_columns": [
"reactor_temp",
"reactor_pressure",
"flow_rate",
"ph_value",
"conversion_rate"
],
"target_column": "resin_purity_index",
"accuracy_floor": 0.90,
"notes": "PRD 5.3 ① 质量预测:树脂纯度/合格率预测,复用已交付化工AI平台 baseline 超参。"
}
@@ -0,0 +1,22 @@
{
"name": "ti-cl4-quality",
"backbone": "gbdt",
"industry": "海绵钛氯化车间(Template-Ti 一期)",
"hyperparams": {
"n_estimators": 120,
"max_depth": 4,
"learning_rate": 0.08,
"random_state": 42
},
"feature_columns": [
"furnace_temp",
"furnace_pressure",
"cl2_flow",
"ti_feed_rate",
"impurity_fe",
"impurity_v"
],
"target_column": "ti_product_grade_index",
"accuracy_floor": 0.90,
"notes": "PRD 5.3 ① 质量预测:氯化车间一次合格率预测,验收准确率≥90%(PRD 第6章里程碑)。一期数据门槛:≥6个月标注(LIMS对接后补标)。"
}