├── Figures ├── intro_figure.pdf └── intro_figure.png ├── README.md ├── clean_dataset.py ├── dpo_training.py ├── load_data.py ├── requirement.txt ├── run_test.py └── tot ├── llama_models.py ├── methods └── bfs_test.py ├── prompts ├── bamboogle.py └── fever.py └── tasks ├── __init__.py ├── bamboogle.py ├── base.py └── fever.py /Figures/intro_figure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/Figures/intro_figure.pdf -------------------------------------------------------------------------------- /Figures/intro_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/Figures/intro_figure.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/README.md -------------------------------------------------------------------------------- /clean_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/clean_dataset.py -------------------------------------------------------------------------------- /dpo_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/dpo_training.py -------------------------------------------------------------------------------- /load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/load_data.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/requirement.txt -------------------------------------------------------------------------------- /run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/run_test.py -------------------------------------------------------------------------------- /tot/llama_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/tot/llama_models.py -------------------------------------------------------------------------------- /tot/methods/bfs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/tot/methods/bfs_test.py -------------------------------------------------------------------------------- /tot/prompts/bamboogle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/tot/prompts/bamboogle.py -------------------------------------------------------------------------------- /tot/prompts/fever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/tot/prompts/fever.py -------------------------------------------------------------------------------- /tot/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/tot/tasks/__init__.py -------------------------------------------------------------------------------- /tot/tasks/bamboogle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/tot/tasks/bamboogle.py -------------------------------------------------------------------------------- /tot/tasks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/tot/tasks/base.py -------------------------------------------------------------------------------- /tot/tasks/fever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/CPO/HEAD/tot/tasks/fever.py --------------------------------------------------------------------------------