2023-01-06 17:57:31 -05:00
|
|
|
'''
|
|
|
|
Downloads models from Hugging Face to models/model-name.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
python download-model.py facebook/opt-1.3b
|
|
|
|
|
|
|
|
'''
|
2023-03-09 22:41:10 -05:00
|
|
|
|
2023-02-10 13:40:03 -05:00
|
|
|
import argparse
|
2023-03-09 22:41:10 -05:00
|
|
|
import base64
|
2023-03-29 19:26:44 -04:00
|
|
|
import datetime
|
2023-03-31 00:31:47 -04:00
|
|
|
import hashlib
|
2023-02-24 12:06:42 -05:00
|
|
|
import json
|
2023-02-10 13:40:03 -05:00
|
|
|
import re
|
2023-01-20 15:51:56 -05:00
|
|
|
import sys
|
2023-01-07 14:33:43 -05:00
|
|
|
from pathlib import Path
|
2023-02-10 13:40:03 -05:00
|
|
|
|
|
|
|
import requests
|
|
|
|
import tqdm
|
2023-03-28 21:29:20 -04:00
|
|
|
from tqdm.contrib.concurrent import thread_map
|
2023-01-20 15:51:56 -05:00
|
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
2023-02-16 21:04:13 -05:00
|
|
|
parser.add_argument('MODEL', type=str, default=None, nargs='?')
|
2023-01-20 15:51:56 -05:00
|
|
|
parser.add_argument('--branch', type=str, default='main', help='Name of the Git branch to download from.')
|
2023-02-03 16:57:12 -05:00
|
|
|
parser.add_argument('--threads', type=int, default=1, help='Number of files to download simultaneously.')
|
2023-02-11 22:42:56 -05:00
|
|
|
parser.add_argument('--text-only', action='store_true', help='Only download text files (txt/json).')
|
2023-03-29 19:26:44 -04:00
|
|
|
parser.add_argument('--output', type=str, default=None, help='The folder where the model should be saved.')
|
2023-03-30 03:42:19 -04:00
|
|
|
parser.add_argument('--clean', action='store_true', help='Does not resume the previous download.')
|
2023-03-30 23:06:12 -04:00
|
|
|
parser.add_argument('--check', action='store_true', help='Validates the checksums of model files.')
|
2023-01-20 15:51:56 -05:00
|
|
|
args = parser.parse_args()
|
2023-01-06 17:57:31 -05:00
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-03-28 21:29:20 -04:00
|
|
|
def get_file(url, output_folder):
|
2023-03-30 03:21:34 -04:00
|
|
|
filename = Path(url.rsplit('/', 1)[1])
|
|
|
|
output_path = output_folder / filename
|
2023-03-30 03:42:19 -04:00
|
|
|
if output_path.exists() and not args.clean:
|
2023-03-30 03:21:34 -04:00
|
|
|
# Check if the file has already been downloaded completely
|
2023-03-31 02:11:59 -04:00
|
|
|
r = requests.get(url, stream=True)
|
2023-03-30 03:21:34 -04:00
|
|
|
total_size = int(r.headers.get('content-length', 0))
|
2023-03-30 15:52:16 -04:00
|
|
|
if output_path.stat().st_size >= total_size:
|
2023-03-30 03:21:34 -04:00
|
|
|
return
|
|
|
|
# Otherwise, resume the download from where it left off
|
|
|
|
headers = {'Range': f'bytes={output_path.stat().st_size}-'}
|
|
|
|
mode = 'ab'
|
|
|
|
else:
|
|
|
|
headers = {}
|
|
|
|
mode = 'wb'
|
|
|
|
|
|
|
|
r = requests.get(url, stream=True, headers=headers)
|
|
|
|
with open(output_path, mode) as f:
|
2023-01-06 17:57:31 -05:00
|
|
|
total_size = int(r.headers.get('content-length', 0))
|
|
|
|
block_size = 1024
|
2023-03-28 21:29:20 -04:00
|
|
|
with tqdm.tqdm(total=total_size, unit='iB', unit_scale=True, bar_format='{l_bar}{bar}| {n_fmt:6}/{total_fmt:6} {rate_fmt:6}') as t:
|
|
|
|
for data in r.iter_content(block_size):
|
|
|
|
t.update(len(data))
|
|
|
|
f.write(data)
|
2023-01-06 17:57:31 -05:00
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-01-20 15:51:56 -05:00
|
|
|
def sanitize_branch_name(branch_name):
|
|
|
|
pattern = re.compile(r"^[a-zA-Z0-9._-]+$")
|
|
|
|
if pattern.match(branch_name):
|
|
|
|
return branch_name
|
|
|
|
else:
|
|
|
|
raise ValueError("Invalid branch name. Only alphanumeric characters, period, underscore and dash are allowed.")
|
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-02-16 21:04:13 -05:00
|
|
|
def select_model_from_default_options():
|
|
|
|
models = {
|
2023-04-01 13:47:47 -04:00
|
|
|
"OPT 6.7B": ("facebook", "opt-6.7b", "main"),
|
|
|
|
"OPT 2.7B": ("facebook", "opt-2.7b", "main"),
|
|
|
|
"OPT 1.3B": ("facebook", "opt-1.3b", "main"),
|
|
|
|
"OPT 350M": ("facebook", "opt-350m", "main"),
|
|
|
|
"GALACTICA 6.7B": ("facebook", "galactica-6.7b", "main"),
|
|
|
|
"GALACTICA 1.3B": ("facebook", "galactica-1.3b", "main"),
|
|
|
|
"GALACTICA 125M": ("facebook", "galactica-125m", "main"),
|
|
|
|
"Pythia-6.9B-deduped": ("EleutherAI", "pythia-6.9b-deduped", "main"),
|
|
|
|
"Pythia-2.8B-deduped": ("EleutherAI", "pythia-2.8b-deduped", "main"),
|
|
|
|
"Pythia-1.4B-deduped": ("EleutherAI", "pythia-1.4b-deduped", "main"),
|
|
|
|
"Pythia-410M-deduped": ("EleutherAI", "pythia-410m-deduped", "main"),
|
2023-02-16 21:04:13 -05:00
|
|
|
}
|
|
|
|
choices = {}
|
|
|
|
|
|
|
|
print("Select the model that you want to download:\n")
|
2023-04-06 23:15:45 -04:00
|
|
|
for i, name in enumerate(models):
|
|
|
|
char = chr(ord('A') + i)
|
2023-02-16 21:04:13 -05:00
|
|
|
choices[char] = name
|
|
|
|
print(f"{char}) {name}")
|
2023-04-06 23:15:45 -04:00
|
|
|
char = chr(ord('A') + len(models))
|
2023-02-16 21:04:13 -05:00
|
|
|
print(f"{char}) None of the above")
|
|
|
|
|
|
|
|
print()
|
|
|
|
print("Input> ", end='')
|
2023-02-20 13:50:48 -05:00
|
|
|
choice = input()[0].strip().upper()
|
2023-02-16 21:04:13 -05:00
|
|
|
if choice == char:
|
|
|
|
print("""\nThen type the name of your desired Hugging Face model in the format organization/name.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
facebook/opt-1.3b
|
2023-04-01 14:03:24 -04:00
|
|
|
EleutherAI/pythia-1.4b-deduped
|
2023-02-16 21:04:13 -05:00
|
|
|
""")
|
|
|
|
|
|
|
|
print("Input> ", end='')
|
|
|
|
model = input()
|
|
|
|
branch = "main"
|
|
|
|
else:
|
|
|
|
arr = models[choices[choice]]
|
|
|
|
model = f"{arr[0]}/{arr[1]}"
|
|
|
|
branch = arr[2]
|
|
|
|
|
|
|
|
return model, branch
|
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-02-24 12:06:42 -05:00
|
|
|
def get_download_links_from_huggingface(model, branch):
|
|
|
|
base = "https://huggingface.co"
|
|
|
|
page = f"/api/models/{model}/tree/{branch}?cursor="
|
2023-03-09 22:41:10 -05:00
|
|
|
cursor = b""
|
2023-01-13 07:05:21 -05:00
|
|
|
|
2023-02-24 12:06:42 -05:00
|
|
|
links = []
|
2023-03-29 22:28:16 -04:00
|
|
|
sha256 = []
|
2023-02-11 22:06:22 -05:00
|
|
|
classifications = []
|
|
|
|
has_pytorch = False
|
2023-03-28 12:08:38 -04:00
|
|
|
has_pt = False
|
2023-03-31 16:33:10 -04:00
|
|
|
has_ggml = False
|
2023-02-11 22:06:22 -05:00
|
|
|
has_safetensors = False
|
2023-03-16 20:31:39 -04:00
|
|
|
is_lora = False
|
2023-03-09 22:41:10 -05:00
|
|
|
while True:
|
|
|
|
content = requests.get(f"{base}{page}{cursor.decode()}").content
|
|
|
|
|
2023-02-24 12:06:42 -05:00
|
|
|
dict = json.loads(content)
|
2023-03-09 22:41:10 -05:00
|
|
|
if len(dict) == 0:
|
|
|
|
break
|
2023-02-24 12:06:42 -05:00
|
|
|
|
2023-03-02 12:05:21 -05:00
|
|
|
for i in range(len(dict)):
|
|
|
|
fname = dict[i]['path']
|
2023-03-16 20:31:39 -04:00
|
|
|
if not is_lora and fname.endswith(('adapter_config.json', 'adapter_model.bin')):
|
|
|
|
is_lora = True
|
2023-02-24 12:06:42 -05:00
|
|
|
|
2023-03-16 20:31:39 -04:00
|
|
|
is_pytorch = re.match("(pytorch|adapter)_model.*\.bin", fname)
|
2023-03-28 12:08:38 -04:00
|
|
|
is_safetensors = re.match(".*\.safetensors", fname)
|
2023-03-23 23:49:04 -04:00
|
|
|
is_pt = re.match(".*\.pt", fname)
|
2023-03-31 16:57:31 -04:00
|
|
|
is_ggml = re.match("ggml.*\.bin", fname)
|
2023-03-09 22:08:09 -05:00
|
|
|
is_tokenizer = re.match("tokenizer.*\.model", fname)
|
2023-03-26 13:41:14 -04:00
|
|
|
is_text = re.match(".*\.(txt|json|py|md)", fname) or is_tokenizer
|
2023-02-11 22:06:22 -05:00
|
|
|
|
2023-03-23 23:49:04 -04:00
|
|
|
if any((is_pytorch, is_safetensors, is_pt, is_tokenizer, is_text)):
|
2023-03-29 22:28:16 -04:00
|
|
|
if 'lfs' in dict[i]:
|
|
|
|
sha256.append([fname, dict[i]['lfs']['oid']])
|
2023-02-11 22:06:22 -05:00
|
|
|
if is_text:
|
2023-02-24 12:06:42 -05:00
|
|
|
links.append(f"https://huggingface.co/{model}/resolve/{branch}/{fname}")
|
2023-02-11 22:06:22 -05:00
|
|
|
classifications.append('text')
|
2023-02-11 22:42:56 -05:00
|
|
|
continue
|
|
|
|
if not args.text_only:
|
2023-02-24 12:06:42 -05:00
|
|
|
links.append(f"https://huggingface.co/{model}/resolve/{branch}/{fname}")
|
2023-02-11 22:42:56 -05:00
|
|
|
if is_safetensors:
|
|
|
|
has_safetensors = True
|
|
|
|
classifications.append('safetensors')
|
|
|
|
elif is_pytorch:
|
|
|
|
has_pytorch = True
|
|
|
|
classifications.append('pytorch')
|
2023-03-23 23:49:04 -04:00
|
|
|
elif is_pt:
|
2023-03-28 12:08:38 -04:00
|
|
|
has_pt = True
|
2023-03-23 23:49:04 -04:00
|
|
|
classifications.append('pt')
|
2023-03-31 16:33:10 -04:00
|
|
|
elif is_ggml:
|
|
|
|
has_ggml = True
|
|
|
|
classifications.append('ggml')
|
2023-03-16 20:31:39 -04:00
|
|
|
|
2023-03-09 22:41:10 -05:00
|
|
|
cursor = base64.b64encode(f'{{"file_name":"{dict[-1]["path"]}"}}'.encode()) + b':50'
|
|
|
|
cursor = base64.b64encode(cursor)
|
|
|
|
cursor = cursor.replace(b'=', b'%3D')
|
2023-02-24 12:06:42 -05:00
|
|
|
|
2023-02-11 22:06:22 -05:00
|
|
|
# If both pytorch and safetensors are available, download safetensors only
|
2023-03-28 12:08:38 -04:00
|
|
|
if (has_pytorch or has_pt) and has_safetensors:
|
2023-04-06 23:15:45 -04:00
|
|
|
for i in range(len(classifications) - 1, -1, -1):
|
2023-03-28 12:08:38 -04:00
|
|
|
if classifications[i] in ['pytorch', 'pt']:
|
2023-02-24 12:06:42 -05:00
|
|
|
links.pop(i)
|
|
|
|
|
2023-03-29 22:28:16 -04:00
|
|
|
return links, sha256, is_lora
|
2023-02-24 12:06:42 -05:00
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-03-28 21:29:20 -04:00
|
|
|
def download_files(file_list, output_folder, num_threads=8):
|
2023-03-30 03:21:34 -04:00
|
|
|
thread_map(lambda url: get_file(url, output_folder), file_list, max_workers=num_threads, disable=True)
|
2023-03-28 17:24:23 -04:00
|
|
|
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-02-24 12:06:42 -05:00
|
|
|
if __name__ == '__main__':
|
|
|
|
model = args.MODEL
|
|
|
|
branch = args.branch
|
|
|
|
if model is None:
|
|
|
|
model, branch = select_model_from_default_options()
|
|
|
|
else:
|
|
|
|
if model[-1] == '/':
|
|
|
|
model = model[:-1]
|
|
|
|
branch = args.branch
|
|
|
|
if branch is None:
|
|
|
|
branch = "main"
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
branch = sanitize_branch_name(branch)
|
|
|
|
except ValueError as err_branch:
|
|
|
|
print(f"Error: {err_branch}")
|
|
|
|
sys.exit()
|
2023-03-16 20:31:39 -04:00
|
|
|
|
2023-03-29 22:28:16 -04:00
|
|
|
links, sha256, is_lora = get_download_links_from_huggingface(model, branch)
|
2023-03-29 19:26:44 -04:00
|
|
|
|
|
|
|
if args.output is not None:
|
|
|
|
base_folder = args.output
|
2023-02-24 12:06:42 -05:00
|
|
|
else:
|
2023-03-29 19:26:44 -04:00
|
|
|
base_folder = 'models' if not is_lora else 'loras'
|
|
|
|
|
|
|
|
output_folder = f"{'_'.join(model.split('/')[-2:])}"
|
|
|
|
if branch != 'main':
|
|
|
|
output_folder += f'_{branch}'
|
|
|
|
output_folder = Path(base_folder) / output_folder
|
2023-02-24 12:06:42 -05:00
|
|
|
|
2023-03-30 23:06:12 -04:00
|
|
|
if args.check:
|
|
|
|
# Validate the checksums
|
|
|
|
validated = True
|
2023-03-29 22:28:16 -04:00
|
|
|
for i in range(len(sha256)):
|
2023-03-31 00:31:47 -04:00
|
|
|
fpath = (output_folder / sha256[i][0])
|
|
|
|
|
|
|
|
if not fpath.exists():
|
|
|
|
print(f"The following file is missing: {fpath}")
|
|
|
|
validated = False
|
|
|
|
continue
|
|
|
|
|
2023-03-30 23:06:12 -04:00
|
|
|
with open(output_folder / sha256[i][0], "rb") as f:
|
|
|
|
bytes = f.read()
|
|
|
|
file_hash = hashlib.sha256(bytes).hexdigest()
|
|
|
|
if file_hash != sha256[i][1]:
|
2023-03-31 00:31:47 -04:00
|
|
|
print(f'Checksum failed: {sha256[i][0]} {sha256[i][1]}')
|
2023-03-30 23:06:12 -04:00
|
|
|
validated = False
|
2023-03-31 00:31:47 -04:00
|
|
|
else:
|
|
|
|
print(f'Checksum validated: {sha256[i][0]} {sha256[i][1]}')
|
2023-04-06 23:15:45 -04:00
|
|
|
|
2023-03-30 23:06:12 -04:00
|
|
|
if validated:
|
|
|
|
print('[+] Validated checksums of all model files!')
|
|
|
|
else:
|
2023-03-31 00:31:47 -04:00
|
|
|
print('[-] Invalid checksums. Rerun download-model.py with the --clean flag.')
|
2023-02-24 12:06:42 -05:00
|
|
|
|
2023-03-31 00:31:47 -04:00
|
|
|
else:
|
2023-03-31 21:52:52 -04:00
|
|
|
|
|
|
|
# Creating the folder and writing the metadata
|
|
|
|
if not output_folder.exists():
|
|
|
|
output_folder.mkdir()
|
|
|
|
with open(output_folder / 'huggingface-metadata.txt', 'w') as f:
|
|
|
|
f.write(f'url: https://huggingface.co/{model}\n')
|
|
|
|
f.write(f'branch: {branch}\n')
|
|
|
|
f.write(f'download date: {str(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))}\n')
|
|
|
|
sha256_str = ''
|
|
|
|
for i in range(len(sha256)):
|
|
|
|
sha256_str += f' {sha256[i][1]} {sha256[i][0]}\n'
|
|
|
|
if sha256_str != '':
|
|
|
|
f.write(f'sha256sum:\n{sha256_str}')
|
|
|
|
|
2023-03-31 00:31:47 -04:00
|
|
|
# Downloading the files
|
|
|
|
print(f"Downloading the model to {output_folder}")
|
2023-04-01 13:47:47 -04:00
|
|
|
download_files(links, output_folder, args.threads)
|