Spaces:
Running
Running
Commit
·
68220ff
1
Parent(s):
6a27da1
might fix https://github.com/huggingface/finetrainers/issues/424#issuecomment-3255342554
Browse files
degraded_finetrainers_requirements.txt
CHANGED
@@ -4,7 +4,8 @@ accelerate
|
|
4 |
# triton
|
5 |
|
6 |
bitsandbytes
|
7 |
-
datasets
|
|
|
8 |
diffusers>=0.32.1
|
9 |
|
10 |
# something broke in transformers > 4.55.4
|
|
|
4 |
# triton
|
5 |
|
6 |
bitsandbytes
|
7 |
+
# Pin datasets to 3.6.0 to avoid VideoDecoder issues with 4.0.0
|
8 |
+
datasets==3.6.0
|
9 |
diffusers>=0.32.1
|
10 |
|
11 |
# something broke in transformers > 4.55.4
|
requirements.txt
CHANGED
@@ -40,6 +40,10 @@ transformers==4.55.4
|
|
40 |
# For GPU monitoring of NVIDIA chipsets
|
41 |
pynvml
|
42 |
|
|
|
|
|
|
|
|
|
43 |
# we are waiting for the next PyPI release
|
44 |
#finetrainers==0.1.0
|
45 |
finetrainers @ git+https://github.com/huggingface/finetrainers.git@main
|
|
|
40 |
# For GPU monitoring of NVIDIA chipsets
|
41 |
pynvml
|
42 |
|
43 |
+
# Pin datasets to 3.6.0 to avoid VideoDecoder issues with 4.0.0
|
44 |
+
# see https://github.com/huggingface/finetrainers/issues/424#issuecomment-3255342554
|
45 |
+
datasets==3.6.0
|
46 |
+
|
47 |
# we are waiting for the next PyPI release
|
48 |
#finetrainers==0.1.0
|
49 |
finetrainers @ git+https://github.com/huggingface/finetrainers.git@main
|