Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +31 -22
requirements.txt
CHANGED
@@ -1,32 +1,41 @@
|
|
|
|
|
|
1 |
transformers>=4.30.0
|
2 |
-
gradio>=3.40.0
|
3 |
-
spacy>=3.6.0
|
4 |
-
jsonschema>=4.17.0
|
5 |
-
huggingface-hub>=0.15.0
|
6 |
numpy>=1.24.0
|
7 |
-
|
8 |
-
robust-deid
|
9 |
scikit-learn>=1.2.0
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
fastapi==0.86.0
|
12 |
pydantic==1.10.2
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
19 |
jupyterlab==3.2.9
|
20 |
ipywidgets==7.6.5
|
21 |
matplotlib==3.5.1
|
|
|
|
|
|
|
22 |
beautifulsoup4==4.10.0
|
23 |
-
spacy
|
24 |
-
nodejs==0.1.1
|
25 |
-
stanza==1.3
|
26 |
wget==3.2
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
|
|
1 |
+
# Core Libraries
|
2 |
+
torch>=1.13.0
|
3 |
transformers>=4.30.0
|
|
|
|
|
|
|
|
|
4 |
numpy>=1.24.0
|
5 |
+
pandas>=1.4.0
|
|
|
6 |
scikit-learn>=1.2.0
|
7 |
+
scipy==1.8.0
|
8 |
+
|
9 |
+
# NLP Tools
|
10 |
+
spacy>=3.6.0
|
11 |
+
stanza==1.3
|
12 |
+
scispacy==0.5.2
|
13 |
+
seqeval
|
14 |
+
pycorenlp==0.3.0
|
15 |
+
robust-deid==0.3.1
|
16 |
+
|
17 |
+
# Web / UI
|
18 |
+
gradio>=3.40.0
|
19 |
fastapi==0.86.0
|
20 |
pydantic==1.10.2
|
21 |
+
|
22 |
+
# Hugging Face Ecosystem
|
23 |
+
huggingface-hub>=0.15.0
|
24 |
+
datasets
|
25 |
+
accelerate
|
26 |
+
|
27 |
+
# Jupyter & Visualization (Optional for dev)
|
28 |
jupyterlab==3.2.9
|
29 |
ipywidgets==7.6.5
|
30 |
matplotlib==3.5.1
|
31 |
+
|
32 |
+
# Utilities
|
33 |
+
jsonschema>=4.17.0
|
34 |
beautifulsoup4==4.10.0
|
|
|
|
|
|
|
35 |
wget==3.2
|
36 |
+
|
37 |
+
# NodeJS bindings (if needed for tokenizer preprocessing)
|
38 |
+
nodejs==0.1.1
|
39 |
+
|
40 |
+
# Installer version
|
41 |
+
pip==23.1.1
|