dnnsdunca commited on
Commit
87dc2a3
1 Parent(s): 253524a

Create scripts/download_llama.sh

Browse files
Files changed (1) hide show
  1. scripts/download_llama.sh +6 -0
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')"