Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ nlp = spacy.load('zh_core_web_trf')
|
|
13 |
|
14 |
# Función para procesar bloques de texto y extraer nombres de personas
|
15 |
def extract_names_from_text(text):
|
16 |
-
print(f'{len(text)}/n/n
|
17 |
doc = nlp(text)
|
18 |
# Extraer las entidades de tipo PERSON
|
19 |
persons = [ent.text for ent in doc.ents if ent.label_ == 'PERSON']
|
|
|
13 |
|
14 |
# Función para procesar bloques de texto y extraer nombres de personas
|
15 |
def extract_names_from_text(text):
|
16 |
+
print(f'{len(text)}/n/n')
|
17 |
doc = nlp(text)
|
18 |
# Extraer las entidades de tipo PERSON
|
19 |
persons = [ent.text for ent in doc.ents if ent.label_ == 'PERSON']
|