saemstunes commited on
Commit
9a7d4de
·
verified ·
1 Parent(s): 1edebe5

Update scripts/download_model.py

Browse files
Files changed (1) hide show
  1. scripts/download_model.py +21 -9
scripts/download_model.py CHANGED
@@ -71,15 +71,27 @@ def check_disk_space(required_gb=3):
71
  return True
72
 
73
  def main():
74
- parser = argparse.ArgumentParser(description="Download Phi-3.5-mini-instruct model")
75
- parser.add_argument("--repo", default="Thetima4/Phi-3.5-mini-instruct-Q4_K_M-GGUF",
76
- help="Hugging Face repository ID")
77
- parser.add_argument("--file", default="Phi-3.5-mini-instruct-q4_k_m.gguf",
78
- help="Model filename")
79
- parser.add_argument("--dir", default="./models",
80
- help="Local directory to save the model")
81
- parser.add_argument("--force", action="store_true",
82
- help="Force download even if file exists")
 
 
 
 
 
 
 
 
 
 
 
 
83
 
84
  args = parser.parse_args()
85
 
 
71
  return True
72
 
73
  def main():
74
+ parser = argparse.ArgumentParser(description="Download TinyLlama-1.1B-Chat model")
75
+ parser.add_argument(
76
+ "--repo",
77
+ default="TheBloke/TinyLlama-1.1B-Chat-v1.0-GGUF",
78
+ help="Hugging Face repository ID"
79
+ )
80
+ parser.add_argument(
81
+ "--file",
82
+ default="tinyllama-1.1b-chat-v1.0.Q4_K_M.gguf",
83
+ help="Model filename"
84
+ )
85
+ parser.add_argument(
86
+ "--dir",
87
+ default="./models",
88
+ help="Local directory to save the model"
89
+ )
90
+ parser.add_argument(
91
+ "--force",
92
+ action="store_true",
93
+ help="Force download even if file exists"
94
+ )
95
 
96
  args = parser.parse_args()
97