Skip to content
Discussion options

You must be logged in to vote

Hi Elison,

Let's see if you obtain some more useful answer but I think the answer is quite simple: models can be wrong, it depends on "what they are trained on".
In fact, the same sentences, with the large model, gives these results (probably the one you expect, at least in the first case!):

You cannot try the large model online, but You can on your pc with this code:

import spacy

if __name__ == "__main__":
    nlp = spacy.load('en_core_web_lg')
    doc = nlp(u"Perfect for balmy, vibrant summer days")
    spacy.displacy.serve(doc, style='dep')

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@polm
Comment options

Answer selected by ines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat / parser Feature: Dependency Parser
3 participants