|
a |
|
b/requirements.txt |
|
|
1 |
# Core Dependencies |
|
|
2 |
Flask==3.0.2 |
|
|
3 |
pandas==2.2.0 |
|
|
4 |
numpy==1.26.3 |
|
|
5 |
scikit-learn==1.4.0 |
|
|
6 |
|
|
|
7 |
# NLP Libraries |
|
|
8 |
nltk==3.8.1 |
|
|
9 |
scispacy |
|
|
10 |
spacy==3.7.2 |
|
|
11 |
transformers==4.37.2 |
|
|
12 |
https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.5.1/en_core_sci_md-0.5.1.tar.gz2 |
|
|
13 |
|
|
|
14 |
# Testing |
|
|
15 |
pytest==8.0.0 |
|
|
16 |
requests==2.31.0 |
|
|
17 |
|
|
|
18 |
# Code Formatting |
|
|
19 |
black==24.1.1 |
|
|
20 |
|
|
|
21 |
# Logging |
|
|
22 |
python-json-logger==2.0.7 |
|
|
23 |
|
|
|
24 |
# Model Serialization |
|
|
25 |
joblib==1.3.2 |
|
|
26 |
|
|
|
27 |
# Documentation |
|
|
28 |
sphinx==7.2.6 |
|
|
29 |
sphinx-rtd-theme==2.0.0 |
|
|
30 |
|
|
|
31 |
# Additional Dependencies |
|
|
32 |
tqdm==4.66.1 # For progress bars |
|
|
33 |
python-dotenv==1.0.1 # For environment variables |
|
|
34 |
click==8.1.7 # Required by Flask |
|
|
35 |
gensim==4.2.0 # Required by spacy |
|
|
36 |
|