Spaces:
Sleeping
Sleeping
fixing numpy error
Browse files- requirements.txt +5 -2
requirements.txt
CHANGED
|
@@ -1,13 +1,16 @@
|
|
| 1 |
-
# CPU-only version of PyTorch
|
| 2 |
-f https://download.pytorch.org/whl/cpu/torch_stable.html
|
| 3 |
torch==2.0.1
|
| 4 |
torchvision==0.15.2
|
| 5 |
|
|
|
|
|
|
|
|
|
|
| 6 |
# fastai library
|
| 7 |
scikit-learn==1.2.2
|
| 8 |
fastai==2.7.12
|
| 9 |
timm==0.9.2
|
| 10 |
plotly==5.15.0
|
| 11 |
|
| 12 |
-
#
|
| 13 |
gradio==4.44.1
|
|
|
|
|
|
|
|
|
| 1 |
-f https://download.pytorch.org/whl/cpu/torch_stable.html
|
| 2 |
torch==2.0.1
|
| 3 |
torchvision==0.15.2
|
| 4 |
|
| 5 |
+
# NumPy 1.x to match fastai / sklearn binaries
|
| 6 |
+
numpy==1.26.4
|
| 7 |
+
|
| 8 |
# fastai library
|
| 9 |
scikit-learn==1.2.2
|
| 10 |
fastai==2.7.12
|
| 11 |
timm==0.9.2
|
| 12 |
plotly==5.15.0
|
| 13 |
|
| 14 |
+
# gradio
|
| 15 |
gradio==4.44.1
|
| 16 |
+
|