Spaces:
Runtime error
Runtime error
First model version
Browse files- app.py +11 -0
- requirements.txt +1 -0
app.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import spacy_streamlit
|
2 |
+
|
3 |
+
MODELS = ["./output/model-best/", "./output/model-last/"]
|
4 |
+
DEFAULT_TEXT = "Corona virüsü testi pozitif çıkan ve özel bir hastanede karantinaya alınan Galatasaray Teknik Direktörü Fatih Terim'in doktorundan açıklama geldi."
|
5 |
+
VISUALIZERS = ["parser", "ner", "tokens"]
|
6 |
+
|
7 |
+
spacy_streamlit.visualize(
|
8 |
+
MODELS,
|
9 |
+
DEFAULT_TEXT,
|
10 |
+
VISUALIZERS
|
11 |
+
)
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
spacy_streamlit
|