对齐 GUI 面板 ID 与 pipeline 方法路由
This commit is contained in:
@ -326,11 +326,15 @@ class WorkerThread(QThread):
|
|||||||
'step4': 'step5_process_csv',
|
'step4': 'step5_process_csv',
|
||||||
'step5': 'step6_extract_spectra',
|
'step5': 'step6_extract_spectra',
|
||||||
'step7': 'step7_calc_indices',
|
'step7': 'step7_calc_indices',
|
||||||
|
'step7_index': 'step7_calc_indices',
|
||||||
'step8': 'step8_train_ml',
|
'step8': 'step8_train_ml',
|
||||||
|
'step8_ml_train': 'step8_train_ml',
|
||||||
'step8_non_empirical_modeling': 'step8_non_empirical_modeling',
|
'step8_non_empirical_modeling': 'step8_non_empirical_modeling',
|
||||||
'step8_qaa': 'step8_qaa_inversion',
|
'step8_qaa': 'step8_qaa_inversion',
|
||||||
'step9': 'step9_watercolor_inversion',
|
'step9': 'step9_watercolor_inversion',
|
||||||
|
'step9_ml_predict': 'step9_predict_ml',
|
||||||
'step10': 'step4_sampling',
|
'step10': 'step4_sampling',
|
||||||
|
'step10_map': 'step10_map',
|
||||||
'step11_ml': 'step9_predict_ml',
|
'step11_ml': 'step9_predict_ml',
|
||||||
'step11': 'step11_non_empirical_prediction',
|
'step11': 'step11_non_empirical_prediction',
|
||||||
'step14': 'step10_map'
|
'step14': 'step10_map'
|
||||||
|
|||||||
@ -345,5 +345,5 @@ class Step8MlTrainPanel(QWidget):
|
|||||||
|
|
||||||
main_window = self.window()
|
main_window = self.window()
|
||||||
if hasattr(main_window, 'run_single_step'):
|
if hasattr(main_window, 'run_single_step'):
|
||||||
pipeline_config = {'step8': config}
|
pipeline_config = {'step8_ml_train': config}
|
||||||
main_window.run_single_step('step8', pipeline_config)
|
main_window.run_single_step('step8_ml_train', pipeline_config)
|
||||||
Reference in New Issue
Block a user