Spaces:
Runtime error
Runtime error
Commit ·
351697b
1
Parent(s): ca2a6a2
Update app.py
Browse files
app.py
CHANGED
|
@@ -25,7 +25,7 @@ def get_output(event_info):
|
|
| 25 |
work_list, keywords_2 = extract_topics(event_info)
|
| 26 |
work_list = [i for i in work_list if bool(dictionary.meaning(i))]
|
| 27 |
|
| 28 |
-
return topic_name+ ' '+str(distance_name), str(topic_name_dep) + ' '+str(distance_name_dep),str(tags_list), str(work_list), str(others)
|
| 29 |
else:
|
| 30 |
return 'Event discription should have >= 20 words', None, None, None,None
|
| 31 |
|
|
|
|
| 25 |
work_list, keywords_2 = extract_topics(event_info)
|
| 26 |
work_list = [i for i in work_list if bool(dictionary.meaning(i))]
|
| 27 |
|
| 28 |
+
return str(topic_name) + ' '+str(distance_name), str(topic_name_dep) + ' '+str(distance_name_dep),str(tags_list), str(work_list), str(others)
|
| 29 |
else:
|
| 30 |
return 'Event discription should have >= 20 words', None, None, None,None
|
| 31 |
|