We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d0cfd5 commit 253b7fdCopy full SHA for 253b7fd
tests/test-lora-conversion-inference.sh
@@ -10,11 +10,16 @@ declare -a params=(
10
11
MODELS_REPO=lora-tests
12
MODELS_REPO_URL=https://huggingface.co/ggml-org/$MODELS_REPO
13
+COMMIT=c26d5fb85b4070a9e9c4e65d132c783b98086890
14
15
# Clone the Hugging Face repository if the directory does not exist
16
if [ ! -d "$MODELS_REPO" ]; then
17
echo "Cloning the Hugging Face repository..."
18
git clone $MODELS_REPO_URL --depth 1
19
+ cd $MODELS_REPO
20
+ git fetch --depth=1 origin $COMMIT
21
+ git reset --hard $COMMIT
22
+ cd -
23
else
24
echo "Repository already exists. Skipping clone."
25
fi
0 commit comments