Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 671 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 671 Bytes

text2sql-llama

Create environment to train the model

Create an environment with conda:

conda create -n llama python=3.9
conda activate llama

Install the requirements:

pip install -r requirements.txt

Install llama-cpp-python with cuLAB (from this link):

CMAKE_ARGS="-DLLAMA_CUBLAS=on" FORCE_CMAKE=1 pip install --upgrade --force-reinstall llama-cpp-python --no-cache-dir

References