Sam Chaudry
commited on
Add files using upload-large-folder tool
Browse files- upload_to_huggingface.py +8 -2
upload_to_huggingface.py
CHANGED
@@ -13,17 +13,23 @@ upload_large_folder(
|
|
13 |
repo_id=repo_id,
|
14 |
folder_path=".",
|
15 |
repo_type="model",
|
16 |
-
|
17 |
-
"venv
|
|
|
18 |
".env",
|
|
|
19 |
"__pycache__/*",
|
20 |
"*.pyc",
|
21 |
"*.pkl",
|
22 |
"*.ipynb",
|
|
|
23 |
"tests/*",
|
24 |
".DS_Store",
|
|
|
25 |
".vscode/*",
|
|
|
26 |
"cache/*",
|
|
|
27 |
".git/*",
|
28 |
"*.log"
|
29 |
]
|
|
|
13 |
repo_id=repo_id,
|
14 |
folder_path=".",
|
15 |
repo_type="model",
|
16 |
+
ignore_patterns=[
|
17 |
+
"venv",
|
18 |
+
"venv/*",
|
19 |
".env",
|
20 |
+
"__pycache__",
|
21 |
"__pycache__/*",
|
22 |
"*.pyc",
|
23 |
"*.pkl",
|
24 |
"*.ipynb",
|
25 |
+
"tests",
|
26 |
"tests/*",
|
27 |
".DS_Store",
|
28 |
+
".vscode",
|
29 |
".vscode/*",
|
30 |
+
"cache",
|
31 |
"cache/*",
|
32 |
+
".git",
|
33 |
".git/*",
|
34 |
"*.log"
|
35 |
]
|