Find all nouns

Report a typo

To go further, manually open an IDE on your computer and copy the output to the website.

Let's check what Stanza can do with Latin. Install Latin with the following code:

import stanza
stanza.download('la')
nlp = stanza.Pipeline(lang="la", processors="tokenize, pos, lemma, depparse")

Find all nouns in the following sentence (from a Latin verse):

Vivamus mea Lesbia, atque amemus,

rumoresque senum seueriorum

omnes unius aestimemus assis!

The output must contain one list of all nouns.

Use Stanza 1.4.0. You can install it with this line:

!pip install stanza==1.4.0
Enter a short text
___

Create a free account to access the full topic