Change order or functions loaded to see if it's a specific space error
Browse files
app.py
CHANGED
@@ -275,9 +275,9 @@ metric, indicating the trustworthiness of the generated summary. Throughout this
|
|
275 |
results for some methods on specific examples. These text blocks will be indicated and they change according to the
|
276 |
currently selected article.""")
|
277 |
|
278 |
-
tagger = get_flair_tagger()
|
279 |
-
sentence_embedding_model = get_sentence_embedding_model()
|
280 |
nlp = get_spacy()
|
|
|
|
|
281 |
|
282 |
# GENERATING SUMMARIES PART
|
283 |
st.header("Generating summaries")
|
|
|
275 |
results for some methods on specific examples. These text blocks will be indicated and they change according to the
|
276 |
currently selected article.""")
|
277 |
|
|
|
|
|
278 |
nlp = get_spacy()
|
279 |
+
sentence_embedding_model = get_sentence_embedding_model()
|
280 |
+
tagger = get_flair_tagger()
|
281 |
|
282 |
# GENERATING SUMMARIES PART
|
283 |
st.header("Generating summaries")
|