Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +27 -5
requirements.txt
CHANGED
|
@@ -1,8 +1,30 @@
|
|
| 1 |
-
spaces
|
| 2 |
-
git+https://github.com/huggingface/transformers.git
|
| 3 |
-
gradio
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
pillow
|
| 5 |
-
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
accelerate
|
| 8 |
-e git+https://github.com/TimDettmers/bitsandbytes.git#egg=bitsandbytes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#spaces
|
| 2 |
+
#git+https://github.com/huggingface/transformers.git
|
| 3 |
+
#gradio
|
| 4 |
+
#pillow
|
| 5 |
+
#torch
|
| 6 |
+
#peft
|
| 7 |
+
#accelerate
|
| 8 |
+
#-e git+https://github.com/TimDettmers/bitsandbytes.git#egg=bitsandbytes
|
| 9 |
+
|
| 10 |
+
# Core libraries for machine learning and image processing
|
| 11 |
+
torch>=1.10
|
| 12 |
+
opencv-python-headless
|
| 13 |
pillow
|
| 14 |
+
|
| 15 |
+
# Hugging Face transformers from GitHub to ensure we have the latest features
|
| 16 |
+
-e git+https://github.com/huggingface/transformers.git
|
| 17 |
+
|
| 18 |
+
# Gradio for creating easy UIs for model demonstrations
|
| 19 |
+
gradio
|
| 20 |
+
|
| 21 |
+
# Necessary for the proper functioning of advanced quantization features
|
| 22 |
accelerate
|
| 23 |
-e git+https://github.com/TimDettmers/bitsandbytes.git#egg=bitsandbytes
|
| 24 |
+
|
| 25 |
+
# PEFT (assuming it's a library you need, but couldn't identify it - please check the name)
|
| 26 |
+
peft
|
| 27 |
+
|
| 28 |
+
# Dependencies that may be required by bitsandbytes and other ML operations
|
| 29 |
+
ninja
|
| 30 |
+
einops
|