Prajwal Kailas
commited on
Commit
·
e1558ea
1
Parent(s):
5f4fdf8
changes
Browse files- app.py +1 -1
- requirements.txt +14 -15
app.py
CHANGED
@@ -15,7 +15,7 @@ from sequence_tagging.arguments import (
|
|
15 |
DataTrainingArguments,
|
16 |
EvaluationArguments,
|
17 |
)
|
18 |
-
from
|
19 |
|
20 |
model_details = {
|
21 |
"post_process":"argmax",
|
|
|
15 |
DataTrainingArguments,
|
16 |
EvaluationArguments,
|
17 |
)
|
18 |
+
from deid import TextDeid
|
19 |
|
20 |
model_details = {
|
21 |
"post_process":"argmax",
|
requirements.txt
CHANGED
@@ -1,23 +1,22 @@
|
|
1 |
transformers==4.11.3
|
2 |
-
tensorflow
|
3 |
-
numpy
|
4 |
-
scipy
|
5 |
-
pandas
|
6 |
-
scikit-learn
|
7 |
-
jupyterlab
|
8 |
-
ipywidgets
|
9 |
-
matplotlib
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
nodejs
|
14 |
stanza==1.2
|
15 |
-
tensorflow-addons
|
16 |
wget==3.2
|
17 |
seqeval
|
18 |
scispacy==0.4.0
|
19 |
datasets==1.9.0
|
20 |
-
allennlp
|
21 |
-
pycorenlp
|
22 |
https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.4.0/en_core_sci_sm-0.4.0.tar.gz
|
23 |
https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.4.0/en_core_sci_lg-0.4.0.tar.gz
|
|
|
1 |
transformers==4.11.3
|
2 |
+
tensorflow==2.8.0
|
3 |
+
numpy==1.22.1
|
4 |
+
scipy==1.8.0
|
5 |
+
pandas==1.4.0
|
6 |
+
scikit-learn==1.0.2
|
7 |
+
jupyterlab==3.2.9
|
8 |
+
ipywidgets==7.6.5
|
9 |
+
matplotlib==3.5.1
|
10 |
+
beautifulsoup4==4.10.0
|
11 |
+
spacy==3.0.7
|
12 |
+
nodejs==0.1.1
|
|
|
13 |
stanza==1.2
|
14 |
+
tensorflow-addons==0.15.0
|
15 |
wget==3.2
|
16 |
seqeval
|
17 |
scispacy==0.4.0
|
18 |
datasets==1.9.0
|
19 |
+
allennlp==2.9.0
|
20 |
+
pycorenlp==0.3.0
|
21 |
https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.4.0/en_core_sci_sm-0.4.0.tar.gz
|
22 |
https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.4.0/en_core_sci_lg-0.4.0.tar.gz
|