Created
November 19, 2018 15:44
-
-
Save vallantin/d9f092023143833ea6604a53c3612c3f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import spacy | |
from spacy import displacy | |
nlp_en = spacy.load('en_core_web_sm') | |
nlp_pt = spacy.load('pt_core_news_sm') | |
nlp_fr = spacy.load('fr_core_news_sm') | |
doc_en = nlp_en(u'Brazil\'s new foreign minister believes climate change is a Marxist plot.') | |
doc_pt = nlp_pt(u'Novo ministro das Relações Exteriores do Brasil acredita que as mudanças climáticas são uma conspiração marxista.') | |
doc_fr = nlp_fr(u'Le nouveau Ministre des Affaires Etrangers brésilien croit que le changement climatique est une conspiration Marxiste.') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment