Spaces:
Runtime error
Runtime error
Hellisotherpeople
commited on
Commit
·
9fd2abf
1
Parent(s):
0c32b91
Update app.py
Browse files
app.py
CHANGED
@@ -88,8 +88,8 @@ form2.form_submit_button("Submit")
|
|
88 |
|
89 |
keywords = model.extract_keywords(doc, keyphrase_ngram_range=(keyphrase_min, keyphrase_max), use_maxsum = use_maxsum, use_mmr = use_mmr, diversity = diversity, top_n = top_n, min_df = min_df, nr_candidates = nr_candidates, seed_keywords = seed_keywords.split())
|
90 |
|
91 |
-
st.header("Extracted Keywords/
|
92 |
-
st.caption("Output is sorted in reverse order (so the final element is the strongest keyphrase and the first element is the nth strongest")
|
93 |
st.caption("That means you should read from the bottom up")
|
94 |
st.write(keywords)
|
95 |
|
|
|
88 |
|
89 |
keywords = model.extract_keywords(doc, keyphrase_ngram_range=(keyphrase_min, keyphrase_max), use_maxsum = use_maxsum, use_mmr = use_mmr, diversity = diversity, top_n = top_n, min_df = min_df, nr_candidates = nr_candidates, seed_keywords = seed_keywords.split())
|
90 |
|
91 |
+
st.header("Extracted Keywords/Keyphrases")
|
92 |
+
st.caption("Output is sorted in reverse order (so the final element is the strongest keyphrase and the first element is the nth strongest)")
|
93 |
st.caption("That means you should read from the bottom up")
|
94 |
st.write(keywords)
|
95 |
|