-
Notifications
You must be signed in to change notification settings - Fork 0
/
up2hf.py
72 lines (62 loc) · 2.89 KB
/
up2hf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import argparse
import os
import zipfile
from huggingface_hub import HfApi
# Hàm để nén các file và thư mục
def zip_files(input_paths, zip_filename):
with zipfile.ZipFile(zip_filename, 'w', zipfile.ZIP_DEFLATED) as zipf:
for input_path in input_paths:
if os.path.isdir(input_path):
# Nếu là thư mục, nén toàn bộ thư mục
for root, dirs, files in os.walk(input_path):
for file in files:
zipf.write(os.path.join(root, file),
os.path.relpath(os.path.join(root, file), os.path.join(input_path, '..')))
else:
# Nếu là file, chỉ nén file đó
zipf.write(input_path, os.path.basename(input_path))
print(f"Created zip file: {zip_filename}")
# Hàm để upload lên Hugging Face
def upload_to_hf(zip_filename, repo, path, message, token):
api = HfApi()
# Upload the file
api.upload_file(
path_or_fileobj=zip_filename,
path_in_repo=path,
repo_id=repo,
commit_message=message,
token=token,
repo_type="dataset" # Change to "model" or "space" depending on your repo type
)
print(f"All inputs uploaded successfully to {repo}/{path}.")
# Hàm chính để xử lý các tham số đầu vào và gọi các hàm trên
def main():
# Đọc các tham số đầu vào
parser = argparse.ArgumentParser(description="Zip and upload files to Hugging Face")
parser.add_argument('--input', nargs='+', required=True, help="List of files and folders to upload")
parser.add_argument('--repo', required=True, help="Target Hugging Face repo (user/repo)")
parser.add_argument('--path', required=True, help="Target Hugging Face path in repo (path/to/file)")
parser.add_argument('--message', required=False, help="commit message")
args = parser.parse_args()
# Lấy token từ biến môi trường
token = os.getenv('HF_WRITE')
if not token:
print("Hugging Face write token not found in environment variables. Please set HF_WRITE.")
return
# Tạo tệp zip
output_dir = os.path.expanduser("/content/tmp")
if not os.path.exists(output_dir):
os.makedirs(output_dir)
# Mở rộng đường dẫn cho tmp và tạo tệp zip
zip_filename = os.path.join(output_dir, "a.zip")
zip_files(args.input, zip_filename)
if args.message == None:
args.message = f"Upload {', '.join(args.input)} to {args.repo}/{args.path}"
# Upload lên Hugging Face
upload_to_hf(zip_filename, args.repo, args.path, args.message, token)
# Xóa tệp ZIP sau khi upload
if os.path.exists(zip_filename):
os.remove(zip_filename)
print(f"Temporary ZIP file {zip_filename} has been deleted.")
if __name__ == "__main__":
main()