Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -70,6 +70,9 @@ def get_nouns(text):
|
|
| 70 |
return json_object,noun_list
|
| 71 |
def find_query(query,sen,nouns):
|
| 72 |
blob_f = TextBlob(query)
|
|
|
|
|
|
|
|
|
|
| 73 |
return blob_f.parse()
|
| 74 |
|
| 75 |
with gr.Blocks() as app:
|
|
|
|
| 70 |
return json_object,noun_list
|
| 71 |
def find_query(query,sen,nouns):
|
| 72 |
blob_f = TextBlob(query)
|
| 73 |
+
for ea in blob.parse():
|
| 74 |
+
print(ea)
|
| 75 |
+
print(ea.split("/"))
|
| 76 |
return blob_f.parse()
|
| 77 |
|
| 78 |
with gr.Blocks() as app:
|