We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d86be7 commit 02b5d07Copy full SHA for 02b5d07
.github/workflows/model_jobs.yml
@@ -105,6 +105,10 @@ jobs:
105
run: |
106
python3 utils/print_env.py
107
108
+ - name: Install "huggingface_hub==1.0.0.rc0"
109
+ working-directory: /transformers
110
+ run: python3 -m pip install "huggingface_hub==1.0.0.rc0"
111
+
112
- name: Show installed libraries and their versions
113
working-directory: /transformers
114
run: pip freeze
utils/split_model_tests.py
@@ -73,5 +73,5 @@
73
start = end
74
end = start + num_jobs_per_splits + (1 if idx < num_jobs % args.num_splits else 0)
75
model_splits.append(d[start:end])
76
- # model_splits = [["models/vit"]]
+ model_splits = [["models/vit"]]
77
print(model_splits)
0 commit comments