├── .gitignore ├── 01_generate_instances.py ├── 02_get_instance_solutions.py ├── 03_generate_il_samples.py ├── 04_train_il.py ├── 05_train_rl.py ├── INSTALL.md ├── README.md ├── actor ├── actor.py ├── cauctions │ └── 0 │ │ ├── il.pkl │ │ ├── il_train_log.txt │ │ ├── mdp.pkl │ │ ├── tmdp+DFS.pkl │ │ └── tmdp+ObjLim.pkl ├── indset │ └── 0 │ │ ├── il.pkl │ │ ├── il_train_log.txt │ │ ├── mdp.pkl │ │ ├── tmdp+DFS.pkl │ │ └── tmdp+ObjLim.pkl ├── mknapsack │ └── 0 │ │ ├── il.pkl │ │ ├── il_train_log.txt │ │ ├── mdp.pkl │ │ ├── tmdp+DFS.pkl │ │ └── tmdp+ObjLim.pkl ├── setcover │ └── 0 │ │ ├── il.pkl │ │ ├── il_train_log.txt │ │ ├── mdp.pkl │ │ ├── tmdp+DFS.pkl │ │ └── tmdp+ObjLim.pkl └── ufacilities │ └── 0 │ ├── il.pkl │ ├── il_train_log.txt │ ├── mdp.pkl │ ├── tmdp+DFS.pkl │ └── tmdp+ObjLim.pkl ├── agent.py ├── brain.py ├── config.default.json ├── evaluate.py └── utilities.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/.gitignore -------------------------------------------------------------------------------- /01_generate_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/01_generate_instances.py -------------------------------------------------------------------------------- /02_get_instance_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/02_get_instance_solutions.py -------------------------------------------------------------------------------- /03_generate_il_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/03_generate_il_samples.py -------------------------------------------------------------------------------- /04_train_il.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/04_train_il.py -------------------------------------------------------------------------------- /05_train_rl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/05_train_rl.py -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/README.md -------------------------------------------------------------------------------- /actor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/actor.py -------------------------------------------------------------------------------- /actor/cauctions/0/il.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/cauctions/0/il.pkl -------------------------------------------------------------------------------- /actor/cauctions/0/il_train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/cauctions/0/il_train_log.txt -------------------------------------------------------------------------------- /actor/cauctions/0/mdp.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/cauctions/0/mdp.pkl -------------------------------------------------------------------------------- /actor/cauctions/0/tmdp+DFS.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/cauctions/0/tmdp+DFS.pkl -------------------------------------------------------------------------------- /actor/cauctions/0/tmdp+ObjLim.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/cauctions/0/tmdp+ObjLim.pkl -------------------------------------------------------------------------------- /actor/indset/0/il.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/indset/0/il.pkl -------------------------------------------------------------------------------- /actor/indset/0/il_train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/indset/0/il_train_log.txt -------------------------------------------------------------------------------- /actor/indset/0/mdp.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/indset/0/mdp.pkl -------------------------------------------------------------------------------- /actor/indset/0/tmdp+DFS.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/indset/0/tmdp+DFS.pkl -------------------------------------------------------------------------------- /actor/indset/0/tmdp+ObjLim.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/indset/0/tmdp+ObjLim.pkl -------------------------------------------------------------------------------- /actor/mknapsack/0/il.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/mknapsack/0/il.pkl -------------------------------------------------------------------------------- /actor/mknapsack/0/il_train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/mknapsack/0/il_train_log.txt -------------------------------------------------------------------------------- /actor/mknapsack/0/mdp.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/mknapsack/0/mdp.pkl -------------------------------------------------------------------------------- /actor/mknapsack/0/tmdp+DFS.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/mknapsack/0/tmdp+DFS.pkl -------------------------------------------------------------------------------- /actor/mknapsack/0/tmdp+ObjLim.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/mknapsack/0/tmdp+ObjLim.pkl -------------------------------------------------------------------------------- /actor/setcover/0/il.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/setcover/0/il.pkl -------------------------------------------------------------------------------- /actor/setcover/0/il_train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/setcover/0/il_train_log.txt -------------------------------------------------------------------------------- /actor/setcover/0/mdp.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/setcover/0/mdp.pkl -------------------------------------------------------------------------------- /actor/setcover/0/tmdp+DFS.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/setcover/0/tmdp+DFS.pkl -------------------------------------------------------------------------------- /actor/setcover/0/tmdp+ObjLim.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/setcover/0/tmdp+ObjLim.pkl -------------------------------------------------------------------------------- /actor/ufacilities/0/il.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/ufacilities/0/il.pkl -------------------------------------------------------------------------------- /actor/ufacilities/0/il_train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/ufacilities/0/il_train_log.txt -------------------------------------------------------------------------------- /actor/ufacilities/0/mdp.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/ufacilities/0/mdp.pkl -------------------------------------------------------------------------------- /actor/ufacilities/0/tmdp+DFS.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/ufacilities/0/tmdp+DFS.pkl -------------------------------------------------------------------------------- /actor/ufacilities/0/tmdp+ObjLim.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/actor/ufacilities/0/tmdp+ObjLim.pkl -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/agent.py -------------------------------------------------------------------------------- /brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/brain.py -------------------------------------------------------------------------------- /config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/config.default.json -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/evaluate.py -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lascavana/rl2branch/HEAD/utilities.py --------------------------------------------------------------------------------