├── .gitignore ├── README.md ├── finetune2_liarraw.py ├── finetune2_rawfc.py ├── finetune_liarraw.py ├── finetune_rawfc.py ├── generate.py └── utils ├── __init__.py ├── callbacks.py └── prompter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thcheung/FactLLaMA/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thcheung/FactLLaMA/HEAD/README.md -------------------------------------------------------------------------------- /finetune2_liarraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thcheung/FactLLaMA/HEAD/finetune2_liarraw.py -------------------------------------------------------------------------------- /finetune2_rawfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thcheung/FactLLaMA/HEAD/finetune2_rawfc.py -------------------------------------------------------------------------------- /finetune_liarraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thcheung/FactLLaMA/HEAD/finetune_liarraw.py -------------------------------------------------------------------------------- /finetune_rawfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thcheung/FactLLaMA/HEAD/finetune_rawfc.py -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thcheung/FactLLaMA/HEAD/generate.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thcheung/FactLLaMA/HEAD/utils/callbacks.py -------------------------------------------------------------------------------- /utils/prompter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thcheung/FactLLaMA/HEAD/utils/prompter.py --------------------------------------------------------------------------------