├── .gitignore ├── DATA_LICENSE ├── LICENSE ├── README.md ├── arguments.py ├── configs └── default_offload_opt_param.json ├── data └── README.md ├── dataloaders.py ├── figures ├── game_examples.png └── spag-reasoning-plot.png ├── requirements.txt ├── tools ├── assign_rewards.py └── play_llm_game.py ├── train.py ├── trainers.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/.gitignore -------------------------------------------------------------------------------- /DATA_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/DATA_LICENSE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/README.md -------------------------------------------------------------------------------- /arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/arguments.py -------------------------------------------------------------------------------- /configs/default_offload_opt_param.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/configs/default_offload_opt_param.json -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/data/README.md -------------------------------------------------------------------------------- /dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/dataloaders.py -------------------------------------------------------------------------------- /figures/game_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/figures/game_examples.png -------------------------------------------------------------------------------- /figures/spag-reasoning-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/figures/spag-reasoning-plot.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/assign_rewards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/tools/assign_rewards.py -------------------------------------------------------------------------------- /tools/play_llm_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/tools/play_llm_game.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/train.py -------------------------------------------------------------------------------- /trainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/trainers.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linear95/SPAG/HEAD/utils.py --------------------------------------------------------------------------------