Spaces:
Sleeping
Sleeping
Create scripts/download_llama.sh
Browse files
scripts/download_llama.sh
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
# Note: You need to have appropriate permissions to download the LLaMA model
|
4 |
+
# This script assumes you have the necessary credentials set up
|
5 |
+
|
6 |
+
python -c "from huggingface_hub import snapshot_download; snapshot_download('meta-llama/Llama-2-8b-chat-hf')"
|