├── LICENSE ├── Production Scheduling Identification.pdf ├── README.md ├── add_dual_constraints.m ├── add_grid_priori.m ├── add_primal_constraints.m ├── add_varDef_and_initVal.m ├── data_prepare ├── README.md ├── aggregate_get_g.m ├── data_generate_cement.m ├── data_generate_steelpowder.m ├── data_price.m ├── data_price_2.m ├── dataset_cement.mat ├── dataset_steelpowder.mat ├── load_parameters_Golmo_milp.xlsx ├── load_parameters_Lu_milp.xlsx ├── load_primal_problem_milp.m ├── plot_typical_load.m ├── rt_hrl_lmps.xlsx └── rt_hrl_lmps_202208.xlsx ├── inverse_optimization.m ├── main_cement.m ├── main_steelpowder.m ├── results ├── 0226_20_training_set_120 │ ├── test_Lu_gen_10stages_120.mat │ └── test_Lu_gen_12stages_120.mat ├── 0227_no_assumption_e │ ├── test_Lu_gen_10stages_120.mat │ ├── test_Lu_gen_12stages_120.mat │ ├── test_Lu_gen_14stages_120.mat │ ├── test_Lu_gen_16stages_120.mat │ ├── test_Lu_gen_18stages_120.mat │ ├── test_Lu_gen_20stages_120.mat │ ├── test_Lu_gen_22stages_120.mat │ ├── test_Lu_gen_24stages_120.mat │ ├── test_Lu_gen_3stages_120.mat │ ├── test_Lu_gen_5stages_120.mat │ ├── test_Lu_gen_6stages_120.mat │ └── test_Lu_gen_8stages_120.mat ├── 0301_no_assumption_b │ ├── test_Lu_gen_10stages_120.mat │ ├── test_Lu_gen_12stages_120.mat │ ├── test_Lu_gen_14stages_120.mat │ ├── test_Lu_gen_16stages_120.mat │ ├── test_Lu_gen_18stages_120.mat │ ├── test_Lu_gen_20stages_120.mat │ ├── test_Lu_gen_5stages_120.mat │ ├── test_Lu_gen_6stages_120.mat │ └── test_Lu_gen_8stages_120.mat ├── 0301_no_assumption_c │ ├── test_Lu_gen_10stages_120.mat │ ├── test_Lu_gen_12stages_120.mat │ ├── test_Lu_gen_14stages_120.mat │ ├── test_Lu_gen_16stages_120.mat │ ├── test_Lu_gen_18stages_120.mat │ ├── test_Lu_gen_20stages_120.mat │ ├── test_Lu_gen_5stages_120.mat │ ├── test_Lu_gen_6stages_120.mat │ └── test_Lu_gen_8stages_120.mat ├── 0314_10_training_set │ ├── test_Lu_gen_10stages_120.mat │ ├── test_Lu_gen_12stages_120.mat │ ├── test_Lu_gen_14stages_120.mat │ ├── test_Lu_gen_16stages_120.mat │ ├── test_Lu_gen_18stages_120.mat │ ├── test_Lu_gen_20stages_120.mat │ ├── test_Lu_gen_5stages_120.mat │ ├── test_Lu_gen_6stages_120.mat │ └── test_Lu_gen_8stages_120.mat ├── 0314_5_training_set │ ├── test_Lu_gen_10stages_120.mat │ ├── test_Lu_gen_12stages_120.mat │ ├── test_Lu_gen_14stages_120.mat │ ├── test_Lu_gen_16stages_120.mat │ ├── test_Lu_gen_18stages_120.mat │ ├── test_Lu_gen_20stages_120.mat │ ├── test_Lu_gen_5stages_120.mat │ ├── test_Lu_gen_6stages_120.mat │ └── test_Lu_gen_8stages_120.mat ├── README.md ├── accuracy.pdf ├── cal_rmse_ml_cement.m ├── cal_rmse_ml_steelpowder.m ├── cal_rmse_test.m ├── load_primal_problem.m ├── ml_results │ ├── predict_LSTM_20230226.mat │ ├── predict_LSTM_20230226_baseline.mat │ ├── predict_LSTM_20240828.mat │ ├── predict_LSTM_20240828_baseline.mat │ ├── predict_MLP_20230226.mat │ ├── predict_MLP_20230226_baseline.mat │ ├── predict_MLP_20240828.mat │ ├── predict_MLP_20240828_baseline.mat │ ├── predict_SVR_20230226.mat │ ├── predict_SVR_20230226_baseline.mat │ ├── predict_svr_20240828.mat │ └── predict_svr_20240828_baseline.mat ├── plot_box.m ├── plot_rmse_methods.m ├── plot_typical_cement.m ├── plot_typical_steel.m ├── total_table_methods.mat ├── total_table_noftraining_set.mat ├── total_table_removing_priori.mat ├── total_table_wrt_m.mat ├── typical_load.pdf ├── typical_load_cement.pdf ├── typical_load_steel.pdf └── variation.pdf ├── 工业过程建模与参数辨识-0522-PSI.pdf └── 工业过程建模与参数辨识-0522-PSI.pptx /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/LICENSE -------------------------------------------------------------------------------- /Production Scheduling Identification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/Production Scheduling Identification.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/README.md -------------------------------------------------------------------------------- /add_dual_constraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/add_dual_constraints.m -------------------------------------------------------------------------------- /add_grid_priori.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/add_grid_priori.m -------------------------------------------------------------------------------- /add_primal_constraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/add_primal_constraints.m -------------------------------------------------------------------------------- /add_varDef_and_initVal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/add_varDef_and_initVal.m -------------------------------------------------------------------------------- /data_prepare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/README.md -------------------------------------------------------------------------------- /data_prepare/aggregate_get_g.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/aggregate_get_g.m -------------------------------------------------------------------------------- /data_prepare/data_generate_cement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/data_generate_cement.m -------------------------------------------------------------------------------- /data_prepare/data_generate_steelpowder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/data_generate_steelpowder.m -------------------------------------------------------------------------------- /data_prepare/data_price.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/data_price.m -------------------------------------------------------------------------------- /data_prepare/data_price_2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/data_price_2.m -------------------------------------------------------------------------------- /data_prepare/dataset_cement.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/dataset_cement.mat -------------------------------------------------------------------------------- /data_prepare/dataset_steelpowder.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/dataset_steelpowder.mat -------------------------------------------------------------------------------- /data_prepare/load_parameters_Golmo_milp.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/load_parameters_Golmo_milp.xlsx -------------------------------------------------------------------------------- /data_prepare/load_parameters_Lu_milp.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/load_parameters_Lu_milp.xlsx -------------------------------------------------------------------------------- /data_prepare/load_primal_problem_milp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/load_primal_problem_milp.m -------------------------------------------------------------------------------- /data_prepare/plot_typical_load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/plot_typical_load.m -------------------------------------------------------------------------------- /data_prepare/rt_hrl_lmps.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/rt_hrl_lmps.xlsx -------------------------------------------------------------------------------- /data_prepare/rt_hrl_lmps_202208.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/data_prepare/rt_hrl_lmps_202208.xlsx -------------------------------------------------------------------------------- /inverse_optimization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/inverse_optimization.m -------------------------------------------------------------------------------- /main_cement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/main_cement.m -------------------------------------------------------------------------------- /main_steelpowder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/main_steelpowder.m -------------------------------------------------------------------------------- /results/0226_20_training_set_120/test_Lu_gen_10stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0226_20_training_set_120/test_Lu_gen_10stages_120.mat -------------------------------------------------------------------------------- /results/0226_20_training_set_120/test_Lu_gen_12stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0226_20_training_set_120/test_Lu_gen_12stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_10stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_10stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_12stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_12stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_14stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_14stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_16stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_16stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_18stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_18stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_20stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_20stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_22stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_22stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_24stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_24stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_3stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_3stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_5stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_5stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_6stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_6stages_120.mat -------------------------------------------------------------------------------- /results/0227_no_assumption_e/test_Lu_gen_8stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0227_no_assumption_e/test_Lu_gen_8stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_b/test_Lu_gen_10stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_b/test_Lu_gen_10stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_b/test_Lu_gen_12stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_b/test_Lu_gen_12stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_b/test_Lu_gen_14stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_b/test_Lu_gen_14stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_b/test_Lu_gen_16stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_b/test_Lu_gen_16stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_b/test_Lu_gen_18stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_b/test_Lu_gen_18stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_b/test_Lu_gen_20stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_b/test_Lu_gen_20stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_b/test_Lu_gen_5stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_b/test_Lu_gen_5stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_b/test_Lu_gen_6stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_b/test_Lu_gen_6stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_b/test_Lu_gen_8stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_b/test_Lu_gen_8stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_c/test_Lu_gen_10stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_c/test_Lu_gen_10stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_c/test_Lu_gen_12stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_c/test_Lu_gen_12stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_c/test_Lu_gen_14stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_c/test_Lu_gen_14stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_c/test_Lu_gen_16stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_c/test_Lu_gen_16stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_c/test_Lu_gen_18stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_c/test_Lu_gen_18stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_c/test_Lu_gen_20stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_c/test_Lu_gen_20stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_c/test_Lu_gen_5stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_c/test_Lu_gen_5stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_c/test_Lu_gen_6stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_c/test_Lu_gen_6stages_120.mat -------------------------------------------------------------------------------- /results/0301_no_assumption_c/test_Lu_gen_8stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0301_no_assumption_c/test_Lu_gen_8stages_120.mat -------------------------------------------------------------------------------- /results/0314_10_training_set/test_Lu_gen_10stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_10_training_set/test_Lu_gen_10stages_120.mat -------------------------------------------------------------------------------- /results/0314_10_training_set/test_Lu_gen_12stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_10_training_set/test_Lu_gen_12stages_120.mat -------------------------------------------------------------------------------- /results/0314_10_training_set/test_Lu_gen_14stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_10_training_set/test_Lu_gen_14stages_120.mat -------------------------------------------------------------------------------- /results/0314_10_training_set/test_Lu_gen_16stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_10_training_set/test_Lu_gen_16stages_120.mat -------------------------------------------------------------------------------- /results/0314_10_training_set/test_Lu_gen_18stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_10_training_set/test_Lu_gen_18stages_120.mat -------------------------------------------------------------------------------- /results/0314_10_training_set/test_Lu_gen_20stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_10_training_set/test_Lu_gen_20stages_120.mat -------------------------------------------------------------------------------- /results/0314_10_training_set/test_Lu_gen_5stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_10_training_set/test_Lu_gen_5stages_120.mat -------------------------------------------------------------------------------- /results/0314_10_training_set/test_Lu_gen_6stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_10_training_set/test_Lu_gen_6stages_120.mat -------------------------------------------------------------------------------- /results/0314_10_training_set/test_Lu_gen_8stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_10_training_set/test_Lu_gen_8stages_120.mat -------------------------------------------------------------------------------- /results/0314_5_training_set/test_Lu_gen_10stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_5_training_set/test_Lu_gen_10stages_120.mat -------------------------------------------------------------------------------- /results/0314_5_training_set/test_Lu_gen_12stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_5_training_set/test_Lu_gen_12stages_120.mat -------------------------------------------------------------------------------- /results/0314_5_training_set/test_Lu_gen_14stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_5_training_set/test_Lu_gen_14stages_120.mat -------------------------------------------------------------------------------- /results/0314_5_training_set/test_Lu_gen_16stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_5_training_set/test_Lu_gen_16stages_120.mat -------------------------------------------------------------------------------- /results/0314_5_training_set/test_Lu_gen_18stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_5_training_set/test_Lu_gen_18stages_120.mat -------------------------------------------------------------------------------- /results/0314_5_training_set/test_Lu_gen_20stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_5_training_set/test_Lu_gen_20stages_120.mat -------------------------------------------------------------------------------- /results/0314_5_training_set/test_Lu_gen_5stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_5_training_set/test_Lu_gen_5stages_120.mat -------------------------------------------------------------------------------- /results/0314_5_training_set/test_Lu_gen_6stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_5_training_set/test_Lu_gen_6stages_120.mat -------------------------------------------------------------------------------- /results/0314_5_training_set/test_Lu_gen_8stages_120.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/0314_5_training_set/test_Lu_gen_8stages_120.mat -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/README.md -------------------------------------------------------------------------------- /results/accuracy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/accuracy.pdf -------------------------------------------------------------------------------- /results/cal_rmse_ml_cement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/cal_rmse_ml_cement.m -------------------------------------------------------------------------------- /results/cal_rmse_ml_steelpowder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/cal_rmse_ml_steelpowder.m -------------------------------------------------------------------------------- /results/cal_rmse_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/cal_rmse_test.m -------------------------------------------------------------------------------- /results/load_primal_problem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/load_primal_problem.m -------------------------------------------------------------------------------- /results/ml_results/predict_LSTM_20230226.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_LSTM_20230226.mat -------------------------------------------------------------------------------- /results/ml_results/predict_LSTM_20230226_baseline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_LSTM_20230226_baseline.mat -------------------------------------------------------------------------------- /results/ml_results/predict_LSTM_20240828.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_LSTM_20240828.mat -------------------------------------------------------------------------------- /results/ml_results/predict_LSTM_20240828_baseline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_LSTM_20240828_baseline.mat -------------------------------------------------------------------------------- /results/ml_results/predict_MLP_20230226.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_MLP_20230226.mat -------------------------------------------------------------------------------- /results/ml_results/predict_MLP_20230226_baseline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_MLP_20230226_baseline.mat -------------------------------------------------------------------------------- /results/ml_results/predict_MLP_20240828.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_MLP_20240828.mat -------------------------------------------------------------------------------- /results/ml_results/predict_MLP_20240828_baseline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_MLP_20240828_baseline.mat -------------------------------------------------------------------------------- /results/ml_results/predict_SVR_20230226.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_SVR_20230226.mat -------------------------------------------------------------------------------- /results/ml_results/predict_SVR_20230226_baseline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_SVR_20230226_baseline.mat -------------------------------------------------------------------------------- /results/ml_results/predict_svr_20240828.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_svr_20240828.mat -------------------------------------------------------------------------------- /results/ml_results/predict_svr_20240828_baseline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/ml_results/predict_svr_20240828_baseline.mat -------------------------------------------------------------------------------- /results/plot_box.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/plot_box.m -------------------------------------------------------------------------------- /results/plot_rmse_methods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/plot_rmse_methods.m -------------------------------------------------------------------------------- /results/plot_typical_cement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/plot_typical_cement.m -------------------------------------------------------------------------------- /results/plot_typical_steel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/plot_typical_steel.m -------------------------------------------------------------------------------- /results/total_table_methods.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/total_table_methods.mat -------------------------------------------------------------------------------- /results/total_table_noftraining_set.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/total_table_noftraining_set.mat -------------------------------------------------------------------------------- /results/total_table_removing_priori.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/total_table_removing_priori.mat -------------------------------------------------------------------------------- /results/total_table_wrt_m.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/total_table_wrt_m.mat -------------------------------------------------------------------------------- /results/typical_load.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/typical_load.pdf -------------------------------------------------------------------------------- /results/typical_load_cement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/typical_load_cement.pdf -------------------------------------------------------------------------------- /results/typical_load_steel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/typical_load_steel.pdf -------------------------------------------------------------------------------- /results/variation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/results/variation.pdf -------------------------------------------------------------------------------- /工业过程建模与参数辨识-0522-PSI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/工业过程建模与参数辨识-0522-PSI.pdf -------------------------------------------------------------------------------- /工业过程建模与参数辨识-0522-PSI.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rick10119/Production-Scheduling-Identification/HEAD/工业过程建模与参数辨识-0522-PSI.pptx --------------------------------------------------------------------------------