lora : fix llama conversion script with ROPE_FREQS (#9117)

This commit is contained in:
Xuan Son Nguyen
2024-08-23 12:58:53 +02:00
committed by GitHub
parent a07c32ea54
commit 3ba780e2a8
3 changed files with 12 additions and 6 deletions

View File

@ -14,7 +14,7 @@ MODELS_REPO_URL=https://huggingface.co/ggml-org/$MODELS_REPO
# Clone the Hugging Face repository if the directory does not exist
if [ ! -d "$MODELS_REPO" ]; then
echo "Cloning the Hugging Face repository..."
git clone $MODELS_REPO_URL
git clone $MODELS_REPO_URL --depth 1
else
echo "Repository already exists. Skipping clone."
fi