Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +11 -10
requirements.txt
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
-
torch
|
2 |
-
torchvision
|
3 |
-
streamlit
|
4 |
-
pillow
|
5 |
-
numpy
|
6 |
-
scipy
|
7 |
-
scikit-learn
|
8 |
-
albumentations
|
9 |
-
nltk
|
10 |
-
spacy
|
|
|
|
1 |
+
torch # Adjust version based on your PyTorch setup
|
2 |
+
torchvision # Match with the PyTorch version
|
3 |
+
streamlit # For Streamlit-based UI
|
4 |
+
pillow # For image processing
|
5 |
+
numpy # For numerical operations
|
6 |
+
scipy # Optional, if your model uses scipy internally
|
7 |
+
scikit-learn # Optional, for additional utilities if needed
|
8 |
+
albumentations # For image augmentations
|
9 |
+
nltk # For natural language processing (e.g., word_tokenize)
|
10 |
+
spacy # For spaCy (adjust version based on your needs)
|
11 |
+
pydantic
|