seanpedrickcase commited on
Commit
1c0bfd4
1 Parent(s): 51ba1cb

Updated download_model.py to download pytorch .bin file

Browse files
Files changed (1) hide show
  1. download_model.py +1 -2
download_model.py CHANGED
@@ -4,8 +4,7 @@ from huggingface_hub import hf_hub_download
4
  repo_id = "sentence-transformers/all-MiniLM-L6-v2" #"BAAI/bge-small-en-v1.5"
5
  files_to_download = [
6
  "config.json",
7
- "config_sentence_transformers.json",
8
- "model.safetensors",
9
  "tokenizer_config.json",
10
  "vocab.txt"
11
  ]
 
4
  repo_id = "sentence-transformers/all-MiniLM-L6-v2" #"BAAI/bge-small-en-v1.5"
5
  files_to_download = [
6
  "config.json",
7
+ "pytorch_model.bin",
 
8
  "tokenizer_config.json",
9
  "vocab.txt"
10
  ]