Omnibus commited on
Commit
9d194ec
·
verified ·
1 Parent(s): 22f968f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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: