f877c37fc6
tests / Test (macos-latest, 3.14) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.10) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.11) (push) Has been cancelled
tests / Test (windows-latest, 3.13) (push) Has been cancelled
tests / Test (windows-latest, 3.14) (push) Has been cancelled
tests / Validate (push) Has been cancelled
tests / Test (macos-latest, 3.10) (push) Has been cancelled
tests / Test (macos-latest, 3.11) (push) Has been cancelled
tests / Test (macos-latest, 3.12) (push) Has been cancelled
tests / Test (macos-latest, 3.13) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.12) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.13) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.14) (push) Has been cancelled
tests / Test (windows-latest, 3.10) (push) Has been cancelled
tests / Test (windows-latest, 3.11) (push) Has been cancelled
tests / Test (windows-latest, 3.12) (push) Has been cancelled
universe validation / Validate (push) Has been cancelled
22 lines
777 B
Python
22 lines
777 B
Python
"""
|
|
Example sentences to test spaCy and its language models.
|
|
|
|
>>> from spacy.lang.es.examples import sentences
|
|
>>> docs = nlp.pipe(sentences)
|
|
"""
|
|
|
|
sentences = [
|
|
"Apple está buscando comprar una startup del Reino Unido por mil millones de dólares.",
|
|
"Los coches autónomos delegan la responsabilidad del seguro en sus fabricantes.",
|
|
"San Francisco analiza prohibir los robots de reparto.",
|
|
"Londres es una gran ciudad del Reino Unido.",
|
|
"El gato come pescado.",
|
|
"Veo al hombre con el telescopio.",
|
|
"La araña come moscas.",
|
|
"El pingüino incuba en su nido sobre el hielo.",
|
|
"¿Dónde estáis?",
|
|
"¿Quién es el presidente francés?",
|
|
"¿Dónde se encuentra la capital de Argentina?",
|
|
"¿Cuándo nació José de San Martín?",
|
|
]
|