To go further, manually open an IDE on your computer and copy the output to the website.
Let's check Stanza for French. To install French, use the following code:
import stanza
stanza.download('fr')
nlp = stanza.Pipeline(lang="fr", processors="tokenize, pos, lemma, depparse, ner")You have a phrase in French. Print out all morphological features for all words.
Your output should look like this:
token1 --> Gender=Masc|Number=Sing|Person=3|PronType=Prs
token2 --> NoneIf Stanza shows None, print it.
Use Stanza 1.4.0. You can install it with this line:
!pip install stanza==1.4.0