llama3-8b-Lawyer / setup.sh
StevenChen16's picture
Update setup.sh
ff31e71 verified
raw
history blame
283 Bytes
#!/bin/bash
# Clone and install LLaMA-Factory
git clone https://github.com/hiyouga/LLaMA-Factory.git
cd LLaMA-Factory
pip install .[torch,bitsandbytes] --quiet
# Install unsloth
pip install git+https://github.com/unslothai/unsloth.git --quiet
# Return to the root directory
cd ..