├── .dockerignore ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docs ├── data.png ├── final.png ├── model.png └── training-data.png ├── pyproject.toml ├── requirements.txt └── text2sql_training ├── __init__.py ├── llm_stf.py └── modal_training_function.py /.dockerignore: -------------------------------------------------------------------------------- 1 | duckdb-text2sql-codellama 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/README.md -------------------------------------------------------------------------------- /docs/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/docs/data.png -------------------------------------------------------------------------------- /docs/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/docs/final.png -------------------------------------------------------------------------------- /docs/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/docs/model.png -------------------------------------------------------------------------------- /docs/training-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/docs/training-data.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/requirements.txt -------------------------------------------------------------------------------- /text2sql_training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text2sql_training/llm_stf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/text2sql_training/llm_stf.py -------------------------------------------------------------------------------- /text2sql_training/modal_training_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyryl-opens-ml/fine-tune-llms-in-2024-with-trl/HEAD/text2sql_training/modal_training_function.py --------------------------------------------------------------------------------