Update README.md
Browse files
README.md
CHANGED
@@ -14,7 +14,7 @@ model-index:
|
|
14 |
|
15 |
# Introduction
|
16 |
|
17 |
-
spaCy NER model trained in the domain of tourism related to the Way of Saint Jacques. It recognizes four types of entities: location (LOC), organizations (ORG), person (PER) and miscellaneous (MISC).
|
18 |
|
19 |
## Usage
|
20 |
|
@@ -28,8 +28,7 @@ from spacy.pipeline import merge_entities
|
|
28 |
nlp = spacy.load("es_spacy_ner_cds")
|
29 |
nlp.add_pipe('sentencizer')
|
30 |
|
31 |
-
example = "Fue antes de llegar a Sigüeiro, en el Camino de Santiago. El proyecto lo financia el Ministerio de Industria y
|
32 |
-
idad."
|
33 |
ner_pipe = nlp(example)
|
34 |
|
35 |
print(ner_pipe.ents)
|
|
|
14 |
|
15 |
# Introduction
|
16 |
|
17 |
+
spaCy NER model for Spanish trained in the domain of tourism related to the Way of Saint Jacques. It recognizes four types of entities: location (LOC), organizations (ORG), person (PER) and miscellaneous (MISC).
|
18 |
|
19 |
## Usage
|
20 |
|
|
|
28 |
nlp = spacy.load("es_spacy_ner_cds")
|
29 |
nlp.add_pipe('sentencizer')
|
30 |
|
31 |
+
example = "Fue antes de llegar a Sigüeiro, en el Camino de Santiago. El proyecto lo financia el Ministerio de Industria y Competitividad."
|
|
|
32 |
ner_pipe = nlp(example)
|
33 |
|
34 |
print(ner_pipe.ents)
|