Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ def get_nouns(text=text,steps=1):
|
|
56 |
|
57 |
|
58 |
noun_box=[]
|
59 |
-
for ea in
|
60 |
n=ea.split("/")
|
61 |
if n[1] == "NN":
|
62 |
noun_box.append(n[0])
|
|
|
56 |
|
57 |
|
58 |
noun_box=[]
|
59 |
+
for ea in blob.parse().split(" "):
|
60 |
n=ea.split("/")
|
61 |
if n[1] == "NN":
|
62 |
noun_box.append(n[0])
|