Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +8 -7
requirements.txt
CHANGED
|
@@ -1,20 +1,20 @@
|
|
| 1 |
--extra-index-url https://download.pytorch.org/whl/cu118
|
| 2 |
|
| 3 |
-
# PyTorch (CUDA 11.8
|
| 4 |
torch==2.2.2+cu118
|
| 5 |
torchvision==0.17.2+cu118
|
| 6 |
torchaudio==2.2.2+cu118
|
| 7 |
|
| 8 |
-
# Core inference
|
| 9 |
transformers==4.43.3
|
| 10 |
accelerate==0.33.0
|
| 11 |
safetensors==0.4.4
|
| 12 |
-
bitsandbytes==0.43.1
|
| 13 |
|
| 14 |
-
# UI & client
|
| 15 |
gradio==4.44.0
|
| 16 |
-
gradio_client==
|
| 17 |
-
websockets
|
| 18 |
|
| 19 |
# Data / utils
|
| 20 |
pandas==2.2.2
|
|
@@ -22,5 +22,6 @@ numpy==1.26.4
|
|
| 22 |
regex==2024.7.24
|
| 23 |
huggingface_hub==0.24.6
|
| 24 |
|
| 25 |
-
# Tokenization
|
| 26 |
sentencepiece==0.1.99
|
|
|
|
|
|
| 1 |
--extra-index-url https://download.pytorch.org/whl/cu118
|
| 2 |
|
| 3 |
+
# PyTorch (CUDA 11.8)
|
| 4 |
torch==2.2.2+cu118
|
| 5 |
torchvision==0.17.2+cu118
|
| 6 |
torchaudio==2.2.2+cu118
|
| 7 |
|
| 8 |
+
# Core inference
|
| 9 |
transformers==4.43.3
|
| 10 |
accelerate==0.33.0
|
| 11 |
safetensors==0.4.4
|
| 12 |
+
bitsandbytes==0.43.1
|
| 13 |
|
| 14 |
+
# UI & client (stable pair)
|
| 15 |
gradio==4.44.0
|
| 16 |
+
gradio_client==0.17.0
|
| 17 |
+
websockets>=11.0,<12.0 # stays on 11.x which works with gradio_client 0.17.x
|
| 18 |
|
| 19 |
# Data / utils
|
| 20 |
pandas==2.2.2
|
|
|
|
| 22 |
regex==2024.7.24
|
| 23 |
huggingface_hub==0.24.6
|
| 24 |
|
| 25 |
+
# Tokenization
|
| 26 |
sentencepiece==0.1.99
|
| 27 |
+
|