Spaces:
Sleeping
Sleeping
jaifar530
commited on
fixed get_entities
Browse files
app.py
CHANGED
@@ -21,7 +21,12 @@ headers = {"Authorization": "Bearer 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"}
|
|
21 |
def get_entities(text):
|
22 |
data = {"inputs": text}
|
23 |
response = requests.post(API_URL, headers=headers, json=data)
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
25 |
return len(entities)
|
26 |
|
27 |
# Set up lemmatizer
|
|
|
21 |
def get_entities(text):
|
22 |
data = {"inputs": text}
|
23 |
response = requests.post(API_URL, headers=headers, json=data)
|
24 |
+
try:
|
25 |
+
entities = [item['entity_group'] for item in response.json()[0]]
|
26 |
+
except Exception as e:
|
27 |
+
print("Error:", e)
|
28 |
+
print("Response:", response.content)
|
29 |
+
entities = []
|
30 |
return len(entities)
|
31 |
|
32 |
# Set up lemmatizer
|