You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
380 B
16 lines
380 B
#!/bin/bash
|
|
set -e
|
|
|
|
echo "[1] 机构树重构..."
|
|
python3 -m stage1_tree_rebuild.tree_builder
|
|
|
|
echo "[2] 层级感知清洗..."
|
|
python3 -m stage2_hierarchical_clean.hierarchical_cleaner
|
|
|
|
echo "[3] 跨树节点匹配..."
|
|
python3 -m stage3_cross_tree_match.matcher
|
|
|
|
echo "[4] 异常检测与标记..."
|
|
python3 -m stage4_anomaly_detect.anomaly_detector
|
|
|
|
echo "全部流程完成!"
|