Views
No views yet
1apt-get install git-lfs
2git lfs installgit clone https://github.com/ggerganov/llama.cpppip install -r ./llama.cpp/requirements.txtgit clone https://huggingface.co/llm-jp/llm-jp-3-13bpython ./llama.cpp/convert_hf_to_gguf.py --outfile llm-jp-3-13b.gguf llm-jp-3-13b1cd llama.cpp
2mkdir build
3cd build
4cmake ..
5cmake --build .
6cd ../
7cd .././llama.cpp/build/bin/llama-quantize ./llm-jp-3-13b.gguf ./llm-jp-3-13b-q8_0.gguf q8_01git clone https://huggingface.co/shakebenn/llm-jp-3-13b-SFT-LoRA
2python ./llama.cpp/convert_lora_to_gguf.py --base llm-jp-3-13b --outfile ./llm-jp-3-13b-SFT-LoRA.gguf llm-jp-3-13b-SFT-LoRA