Spaces:
Runtime error
Runtime error
Julian Bilcke
commited on
Commit
·
37d7e09
1
Parent(s):
4ed636f
debugging dependencies
Browse files- requirements.txt +4 -3
- requirements_without_flash_attention.txt +4 -3
- setup_no_captions.sh +1 -1
requirements.txt
CHANGED
|
@@ -10,7 +10,7 @@ torchao>=0.7.0
|
|
| 10 |
|
| 11 |
# datasets 3.4.0 replaces decord by torchvision
|
| 12 |
# let's free it for now
|
| 13 |
-
datasets==3.3.2
|
| 14 |
|
| 15 |
huggingface_hub
|
| 16 |
hf_transfer>=0.1.8
|
|
@@ -26,9 +26,10 @@ pynvml
|
|
| 26 |
|
| 27 |
# eva-decord is missing get_batch it seems
|
| 28 |
#eva-decord==0.6.1
|
| 29 |
-
decord
|
| 30 |
|
| 31 |
-
finetrainers
|
|
|
|
| 32 |
# temporary fix for pip install bug:
|
| 33 |
#finetrainers @ git+https://github.com/jbilcke-hf/finetrainers-patches.git@fix_missing_sft_trainer_files
|
| 34 |
|
|
|
|
| 10 |
|
| 11 |
# datasets 3.4.0 replaces decord by torchvision
|
| 12 |
# let's free it for now
|
| 13 |
+
#datasets==3.3.2
|
| 14 |
|
| 15 |
huggingface_hub
|
| 16 |
hf_transfer>=0.1.8
|
|
|
|
| 26 |
|
| 27 |
# eva-decord is missing get_batch it seems
|
| 28 |
#eva-decord==0.6.1
|
| 29 |
+
#decord
|
| 30 |
|
| 31 |
+
finetrainers==0.1.0
|
| 32 |
+
#finetrainers @ git+https://github.com/a-r-r-o-w/finetrainers.git@main
|
| 33 |
# temporary fix for pip install bug:
|
| 34 |
#finetrainers @ git+https://github.com/jbilcke-hf/finetrainers-patches.git@fix_missing_sft_trainer_files
|
| 35 |
|
requirements_without_flash_attention.txt
CHANGED
|
@@ -10,7 +10,7 @@ torchao>=0.7.0
|
|
| 10 |
|
| 11 |
# datasets 3.4.0 replaces decord by torchvision
|
| 12 |
# let's free it for now
|
| 13 |
-
datasets==3.3.2
|
| 14 |
|
| 15 |
huggingface_hub
|
| 16 |
hf_transfer>=0.1.8
|
|
@@ -26,10 +26,11 @@ peft>=0.12.0
|
|
| 26 |
# pynvml
|
| 27 |
|
| 28 |
# eva-decord is missing get_batch it seems
|
| 29 |
-
eva-decord
|
| 30 |
# decord
|
| 31 |
|
| 32 |
-
finetrainers
|
|
|
|
| 33 |
# temporary fix for pip install bug:
|
| 34 |
#finetrainers @ git+https://github.com/jbilcke-hf/finetrainers-patches.git@fix_missing_sft_trainer_files
|
| 35 |
|
|
|
|
| 10 |
|
| 11 |
# datasets 3.4.0 replaces decord by torchvision
|
| 12 |
# let's free it for now
|
| 13 |
+
#datasets==3.3.2
|
| 14 |
|
| 15 |
huggingface_hub
|
| 16 |
hf_transfer>=0.1.8
|
|
|
|
| 26 |
# pynvml
|
| 27 |
|
| 28 |
# eva-decord is missing get_batch it seems
|
| 29 |
+
# eva-decord
|
| 30 |
# decord
|
| 31 |
|
| 32 |
+
finetrainers==0.1.0
|
| 33 |
+
#finetrainers @ git+https://github.com/a-r-r-o-w/finetrainers.git@main
|
| 34 |
# temporary fix for pip install bug:
|
| 35 |
#finetrainers @ git+https://github.com/jbilcke-hf/finetrainers-patches.git@fix_missing_sft_trainer_files
|
| 36 |
|
setup_no_captions.sh
CHANGED
|
@@ -12,7 +12,7 @@ python3.10 -m venv .venv
|
|
| 12 |
|
| 13 |
source .venv/bin/activate
|
| 14 |
|
| 15 |
-
python3.10 -m pip install -r requirements_without_flash_attention.txt
|
| 16 |
|
| 17 |
# if you require flash attention, please install it manually for your operating system
|
| 18 |
|
|
|
|
| 12 |
|
| 13 |
source .venv/bin/activate
|
| 14 |
|
| 15 |
+
python3.10 -m pip install -r requirements_without_flash_attention.txt --ignore-conflicts
|
| 16 |
|
| 17 |
# if you require flash attention, please install it manually for your operating system
|
| 18 |
|