Update app.py
Browse files
app.py
CHANGED
|
@@ -177,7 +177,7 @@ output_data = {}
|
|
| 177 |
|
| 178 |
if input_text:
|
| 179 |
# Keyword extraction using TextRank
|
| 180 |
-
keywords =
|
| 181 |
themes = assign_themes(keywords)
|
| 182 |
frames = assign_frames(themes)
|
| 183 |
|
|
|
|
| 177 |
|
| 178 |
if input_text:
|
| 179 |
# Keyword extraction using TextRank
|
| 180 |
+
keywords = extract_keywords_with_bert(input_text)
|
| 181 |
themes = assign_themes(keywords)
|
| 182 |
frames = assign_frames(themes)
|
| 183 |
|