Update requirements.txt
Browse files- requirements.txt +18 -15
requirements.txt
CHANGED
|
@@ -1,25 +1,28 @@
|
|
| 1 |
-
#
|
|
|
|
| 2 |
gradio>=4.44.0
|
| 3 |
|
| 4 |
-
#
|
| 5 |
-
requests>=2.31.0
|
| 6 |
-
beautifulsoup4>=4.12.0
|
| 7 |
-
lxml>=4.9.0
|
| 8 |
-
|
| 9 |
-
# Data Processing
|
| 10 |
pandas>=2.0.0
|
| 11 |
numpy>=1.24.0
|
| 12 |
|
| 13 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
transformers>=4.30.0
|
| 15 |
torch>=2.0.0
|
| 16 |
-
|
|
|
|
|
|
|
| 17 |
datasets>=2.14.0
|
| 18 |
|
| 19 |
-
#
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
-
#
|
| 23 |
-
python-dateutil>=2.8.0
|
| 24 |
-
pytz>=2023.3
|
| 25 |
-
validators>=0.20.0
|
|
|
|
| 1 |
+
# AI Dataset Studio - Complete Dependencies
|
| 2 |
+
# Core framework
|
| 3 |
gradio>=4.44.0
|
| 4 |
|
| 5 |
+
# Data processing
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
pandas>=2.0.0
|
| 7 |
numpy>=1.24.0
|
| 8 |
|
| 9 |
+
# Web scraping
|
| 10 |
+
requests>=2.31.0
|
| 11 |
+
beautifulsoup4>=4.12.0
|
| 12 |
+
|
| 13 |
+
# AI/ML models (optional but recommended)
|
| 14 |
transformers>=4.30.0
|
| 15 |
torch>=2.0.0
|
| 16 |
+
nltk>=3.8.0
|
| 17 |
+
|
| 18 |
+
# HuggingFace ecosystem
|
| 19 |
datasets>=2.14.0
|
| 20 |
|
| 21 |
+
# Text processing
|
| 22 |
+
textstat>=0.7.0
|
| 23 |
+
|
| 24 |
+
# Perplexity AI integration
|
| 25 |
+
# requests is already included above for API calls
|
| 26 |
|
| 27 |
+
# Development and utilities
|
| 28 |
+
python-dateutil>=2.8.0
|
|
|
|
|
|