I would like to know if the token.tag for training in v3.0 is equal to token.tag or token.pos in v2.3? #8196
-
I've already consulted you @svlandeg in this post: #8075 There are a few things I am still not clear about. You said this in the above post.
I would like to know if the token.tag in v3.0 is equal to token.tag or token.pos in v2.0? In other words, are the tags of token.tag in v3.0 'VBD,VBG,VBN...etc' or 'ADJ,NOUN,VERB...etc'? In addition, can I save the model I trained to the current directory which is the same one of the model I am training? Thank you! Originally posted by @svlandeg in #8075 (comment) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
Token.tag in 2.0 is still token.tag in 3.0.
Yes, you can save a model anywhere, you just specify the path when calling spacy train. |
Beta Was this translation helpful? Give feedback.
-
I did reply, but perhaps you couldn't see it because you have to hit the "see more" link at the bottom of a thread if it's becoming too long: #8075 (reply in thread) |
Beta Was this translation helpful? Give feedback.
Token.tag in 2.0 is still token.tag in 3.0.
tag
is language-specific, detailed part of speech tags.pos
is more general Universal Dependencies part of speech tags. This is completely unchanged between v2 and v3.Yes, you can save a model anywhere, you just specify the path when calling spacy train.