Change spacy order
Browse files
app.py
CHANGED
|
@@ -294,10 +294,11 @@ metric, indicating the trustworthiness of the generated summary. Throughout this
|
|
| 294 |
results for some methods on specific examples. These text blocks will be indicated and they change according to the
|
| 295 |
currently selected article.""")
|
| 296 |
|
| 297 |
-
|
| 298 |
sentence_embedding_model = get_sentence_embedding_model()
|
| 299 |
# tagger = get_flair_tagger()
|
| 300 |
ner_model = get_transformer_pipeline()
|
|
|
|
| 301 |
|
| 302 |
# GENERATING SUMMARIES PART
|
| 303 |
st.header("Generating summaries")
|
|
|
|
| 294 |
results for some methods on specific examples. These text blocks will be indicated and they change according to the
|
| 295 |
currently selected article.""")
|
| 296 |
|
| 297 |
+
|
| 298 |
sentence_embedding_model = get_sentence_embedding_model()
|
| 299 |
# tagger = get_flair_tagger()
|
| 300 |
ner_model = get_transformer_pipeline()
|
| 301 |
+
nlp = get_spacy()
|
| 302 |
|
| 303 |
# GENERATING SUMMARIES PART
|
| 304 |
st.header("Generating summaries")
|