结构修改,后端文件跟前端内容进行适配

This commit is contained in:
DXC
2026-06-11 17:44:24 +08:00
parent 3584c07b67
commit e59703f163
12 changed files with 1311 additions and 495 deletions

View File

@ -439,11 +439,11 @@ class Step9MlPredictPanel(QWidget):
main_window = self.window()
if hasattr(main_window, 'run_single_step'):
config = {
'step11_ml': self.get_config(),
'step9_ml_predict': self.get_config(),
'_external_models_dict': checked_dict,
'_external_model_dir': self.external_model_dir,
}
main_window.run_single_step('step11_ml', config)
main_window.run_single_step('step9_ml_predict', config)
return
# 默认流程:使用模型目录
@ -454,5 +454,5 @@ class Step9MlPredictPanel(QWidget):
main_window = self.window()
if hasattr(main_window, 'run_single_step'):
config = {'step11_ml': self.get_config()}
main_window.run_single_step('step11_ml', config)
config = {'step9_ml_predict': self.get_config()}
main_window.run_single_step('step9_ml_predict', config)