├── FJSP ├── Thesis_experiment_R.py ├── Thesis_experiment_S.py ├── Thesis_experiment_integrated.py ├── Thesis_tournament_R.py ├── Thesis_tournament_S.py ├── Thesis_training_R.py ├── Thesis_training_S.py ├── agent_machine.py ├── agent_workcenter.py ├── brain_machine_S.py ├── brain_workcenter_R.py ├── breakdown_creation.py ├── experiment result │ ├── Description.txt │ ├── R_val_result_3.xlsx │ ├── R_val_result_4.xlsx │ ├── R_val_result_5.xlsx │ ├── S_val_result_3.xlsx │ ├── S_val_result_4.xlsx │ ├── S_val_result_5.xlsx │ ├── integrated_3.xlsx │ ├── integrated_4.xlsx │ └── integrated_5.xlsx ├── heterogeneity_creation.py ├── job_creation.py ├── routing.py ├── routing_models │ ├── Abstract_state_dict.pt │ ├── Deeper_state_dict.pt │ ├── Description.txt │ ├── TEST_state_dict.pt │ ├── large_state_dict3wc12m.pt │ ├── large_state_dict5wc20m_globalR.pt │ ├── medium_state_dict3wc9m.pt │ ├── medium_state_dict4wc12m_globalR.pt │ ├── small_state_dict3wc6m.pt │ ├── small_state_dict3wc6m_globalR.pt │ ├── small_state_dict6wc12m.pt │ ├── validated_3machine_state_dict.pt │ ├── validated_4machine_large.pt │ ├── validated_4machine_large2.pt │ ├── validated_4machine_large3.pt │ ├── validated_4machine_state_dict.pt │ ├── validated_4machine_state_dict2.pt │ ├── validated_5machine_state_dict.pt │ └── validated_5machine_state_dict2.pt ├── scenario_creation.py ├── sequencing.py ├── sequencing_models │ ├── Description.txt │ ├── MR_direct_big.pt │ ├── MR_direct_rwd13.pt │ ├── MR_direct_rwdbig.pt │ ├── MR_direct_rwdbsf.pt │ ├── MR_validated_3ops.pt │ ├── MR_validated_4ops.pt │ ├── MR_validated_5ops.pt │ ├── MR_validated_5ops_1.pt │ ├── validated_HH.pt │ ├── validated_HH1.pt │ ├── validated_HH_ext6.pt │ ├── validated_HH_ext9.pt │ ├── validated_HL.pt │ ├── validated_HL1.pt │ ├── validated_HL_ext6.pt │ ├── validated_HL_ext9.pt │ ├── validated_LH.pt │ ├── validated_LH1.pt │ ├── validated_LH_ext6.pt │ ├── validated_LH_ext9.pt │ ├── validated_LL.pt │ ├── validated_LL1.pt │ ├── validated_LL_ext6.pt │ └── validated_LL_ext9.pt ├── validation_R.py └── validation_S.py ├── JSP ├── Thesis_experiment.py ├── Thesis_job_in_system.py ├── Thesis_tournament.py ├── Thesis_training.py ├── brain.py ├── breakdown_creation.py ├── experiment result │ ├── Description.text │ ├── exp_result_70.xlsx │ ├── exp_result_80.xlsx │ ├── exp_result_90.xlsx │ ├── tour_result_70.xlsx │ ├── tour_result_80.xlsx │ └── tour_result_90.xlsx ├── heterogeneity_creation.py ├── job_creation.py ├── machine.py ├── scenario_creation.py ├── sequencing.py ├── trained models │ ├── Description.txt │ ├── validated_10_70.pt │ ├── validated_10_80.pt │ ├── validated_10_90.pt │ ├── validated_6_70.pt │ ├── validated_6_80.pt │ ├── validated_6_90.pt │ ├── validated_HL_ext9.pt │ └── validated_abstract_indirect.pt └── validation.py ├── LICENSE └── README.md /FJSP/Thesis_experiment_R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/Thesis_experiment_R.py -------------------------------------------------------------------------------- /FJSP/Thesis_experiment_S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/Thesis_experiment_S.py -------------------------------------------------------------------------------- /FJSP/Thesis_experiment_integrated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/Thesis_experiment_integrated.py -------------------------------------------------------------------------------- /FJSP/Thesis_tournament_R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/Thesis_tournament_R.py -------------------------------------------------------------------------------- /FJSP/Thesis_tournament_S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/Thesis_tournament_S.py -------------------------------------------------------------------------------- /FJSP/Thesis_training_R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/Thesis_training_R.py -------------------------------------------------------------------------------- /FJSP/Thesis_training_S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/Thesis_training_S.py -------------------------------------------------------------------------------- /FJSP/agent_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/agent_machine.py -------------------------------------------------------------------------------- /FJSP/agent_workcenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/agent_workcenter.py -------------------------------------------------------------------------------- /FJSP/brain_machine_S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/brain_machine_S.py -------------------------------------------------------------------------------- /FJSP/brain_workcenter_R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/brain_workcenter_R.py -------------------------------------------------------------------------------- /FJSP/breakdown_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/breakdown_creation.py -------------------------------------------------------------------------------- /FJSP/experiment result/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/Description.txt -------------------------------------------------------------------------------- /FJSP/experiment result/R_val_result_3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/R_val_result_3.xlsx -------------------------------------------------------------------------------- /FJSP/experiment result/R_val_result_4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/R_val_result_4.xlsx -------------------------------------------------------------------------------- /FJSP/experiment result/R_val_result_5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/R_val_result_5.xlsx -------------------------------------------------------------------------------- /FJSP/experiment result/S_val_result_3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/S_val_result_3.xlsx -------------------------------------------------------------------------------- /FJSP/experiment result/S_val_result_4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/S_val_result_4.xlsx -------------------------------------------------------------------------------- /FJSP/experiment result/S_val_result_5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/S_val_result_5.xlsx -------------------------------------------------------------------------------- /FJSP/experiment result/integrated_3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/integrated_3.xlsx -------------------------------------------------------------------------------- /FJSP/experiment result/integrated_4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/integrated_4.xlsx -------------------------------------------------------------------------------- /FJSP/experiment result/integrated_5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/experiment result/integrated_5.xlsx -------------------------------------------------------------------------------- /FJSP/heterogeneity_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/heterogeneity_creation.py -------------------------------------------------------------------------------- /FJSP/job_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/job_creation.py -------------------------------------------------------------------------------- /FJSP/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing.py -------------------------------------------------------------------------------- /FJSP/routing_models/Abstract_state_dict.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/Abstract_state_dict.pt -------------------------------------------------------------------------------- /FJSP/routing_models/Deeper_state_dict.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/Deeper_state_dict.pt -------------------------------------------------------------------------------- /FJSP/routing_models/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/Description.txt -------------------------------------------------------------------------------- /FJSP/routing_models/TEST_state_dict.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/TEST_state_dict.pt -------------------------------------------------------------------------------- /FJSP/routing_models/large_state_dict3wc12m.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/large_state_dict3wc12m.pt -------------------------------------------------------------------------------- /FJSP/routing_models/large_state_dict5wc20m_globalR.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/large_state_dict5wc20m_globalR.pt -------------------------------------------------------------------------------- /FJSP/routing_models/medium_state_dict3wc9m.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/medium_state_dict3wc9m.pt -------------------------------------------------------------------------------- /FJSP/routing_models/medium_state_dict4wc12m_globalR.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/medium_state_dict4wc12m_globalR.pt -------------------------------------------------------------------------------- /FJSP/routing_models/small_state_dict3wc6m.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/small_state_dict3wc6m.pt -------------------------------------------------------------------------------- /FJSP/routing_models/small_state_dict3wc6m_globalR.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/small_state_dict3wc6m_globalR.pt -------------------------------------------------------------------------------- /FJSP/routing_models/small_state_dict6wc12m.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/small_state_dict6wc12m.pt -------------------------------------------------------------------------------- /FJSP/routing_models/validated_3machine_state_dict.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/validated_3machine_state_dict.pt -------------------------------------------------------------------------------- /FJSP/routing_models/validated_4machine_large.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/validated_4machine_large.pt -------------------------------------------------------------------------------- /FJSP/routing_models/validated_4machine_large2.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/validated_4machine_large2.pt -------------------------------------------------------------------------------- /FJSP/routing_models/validated_4machine_large3.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/validated_4machine_large3.pt -------------------------------------------------------------------------------- /FJSP/routing_models/validated_4machine_state_dict.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/validated_4machine_state_dict.pt -------------------------------------------------------------------------------- /FJSP/routing_models/validated_4machine_state_dict2.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/validated_4machine_state_dict2.pt -------------------------------------------------------------------------------- /FJSP/routing_models/validated_5machine_state_dict.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/validated_5machine_state_dict.pt -------------------------------------------------------------------------------- /FJSP/routing_models/validated_5machine_state_dict2.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/routing_models/validated_5machine_state_dict2.pt -------------------------------------------------------------------------------- /FJSP/scenario_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/scenario_creation.py -------------------------------------------------------------------------------- /FJSP/sequencing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing.py -------------------------------------------------------------------------------- /FJSP/sequencing_models/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/Description.txt -------------------------------------------------------------------------------- /FJSP/sequencing_models/MR_direct_big.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/MR_direct_big.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/MR_direct_rwd13.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/MR_direct_rwd13.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/MR_direct_rwdbig.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/MR_direct_rwdbig.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/MR_direct_rwdbsf.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/MR_direct_rwdbsf.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/MR_validated_3ops.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/MR_validated_3ops.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/MR_validated_4ops.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/MR_validated_4ops.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/MR_validated_5ops.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/MR_validated_5ops.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/MR_validated_5ops_1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/MR_validated_5ops_1.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_HH.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_HH.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_HH1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_HH1.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_HH_ext6.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_HH_ext6.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_HH_ext9.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_HH_ext9.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_HL.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_HL.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_HL1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_HL1.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_HL_ext6.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_HL_ext6.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_HL_ext9.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_HL_ext9.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_LH.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_LH.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_LH1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_LH1.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_LH_ext6.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_LH_ext6.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_LH_ext9.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_LH_ext9.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_LL.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_LL.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_LL1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_LL1.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_LL_ext6.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_LL_ext6.pt -------------------------------------------------------------------------------- /FJSP/sequencing_models/validated_LL_ext9.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/sequencing_models/validated_LL_ext9.pt -------------------------------------------------------------------------------- /FJSP/validation_R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/validation_R.py -------------------------------------------------------------------------------- /FJSP/validation_S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/FJSP/validation_S.py -------------------------------------------------------------------------------- /JSP/Thesis_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/Thesis_experiment.py -------------------------------------------------------------------------------- /JSP/Thesis_job_in_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/Thesis_job_in_system.py -------------------------------------------------------------------------------- /JSP/Thesis_tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/Thesis_tournament.py -------------------------------------------------------------------------------- /JSP/Thesis_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/Thesis_training.py -------------------------------------------------------------------------------- /JSP/brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/brain.py -------------------------------------------------------------------------------- /JSP/breakdown_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/breakdown_creation.py -------------------------------------------------------------------------------- /JSP/experiment result/Description.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/experiment result/Description.text -------------------------------------------------------------------------------- /JSP/experiment result/exp_result_70.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/experiment result/exp_result_70.xlsx -------------------------------------------------------------------------------- /JSP/experiment result/exp_result_80.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/experiment result/exp_result_80.xlsx -------------------------------------------------------------------------------- /JSP/experiment result/exp_result_90.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/experiment result/exp_result_90.xlsx -------------------------------------------------------------------------------- /JSP/experiment result/tour_result_70.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/experiment result/tour_result_70.xlsx -------------------------------------------------------------------------------- /JSP/experiment result/tour_result_80.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/experiment result/tour_result_80.xlsx -------------------------------------------------------------------------------- /JSP/experiment result/tour_result_90.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/experiment result/tour_result_90.xlsx -------------------------------------------------------------------------------- /JSP/heterogeneity_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/heterogeneity_creation.py -------------------------------------------------------------------------------- /JSP/job_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/job_creation.py -------------------------------------------------------------------------------- /JSP/machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/machine.py -------------------------------------------------------------------------------- /JSP/scenario_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/scenario_creation.py -------------------------------------------------------------------------------- /JSP/sequencing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/sequencing.py -------------------------------------------------------------------------------- /JSP/trained models/Description.txt: -------------------------------------------------------------------------------- 1 | The trained models are stored in this folder 2 | -------------------------------------------------------------------------------- /JSP/trained models/validated_10_70.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/trained models/validated_10_70.pt -------------------------------------------------------------------------------- /JSP/trained models/validated_10_80.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/trained models/validated_10_80.pt -------------------------------------------------------------------------------- /JSP/trained models/validated_10_90.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/trained models/validated_10_90.pt -------------------------------------------------------------------------------- /JSP/trained models/validated_6_70.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/trained models/validated_6_70.pt -------------------------------------------------------------------------------- /JSP/trained models/validated_6_80.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/trained models/validated_6_80.pt -------------------------------------------------------------------------------- /JSP/trained models/validated_6_90.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/trained models/validated_6_90.pt -------------------------------------------------------------------------------- /JSP/trained models/validated_HL_ext9.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/trained models/validated_HL_ext9.pt -------------------------------------------------------------------------------- /JSP/trained models/validated_abstract_indirect.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/trained models/validated_abstract_indirect.pt -------------------------------------------------------------------------------- /JSP/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/JSP/validation.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RK0731/PhD-Thesis-Projects/HEAD/README.md --------------------------------------------------------------------------------