Can a morphologizer (Tagger architecture) use static vectors as features? #13577
Unanswered
thjbdvlt
asked this question in
Help: Model Advice
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello :-)
I am currently training a morphologizer (for french). It works well but i was wondering if it could use word vectors, because i've produced some word2vec vectors with gensim.
I've read in the documentation that "Many neural network models are able to use word vector tables as additional features, which sometimes results in significant improvements in accuracy" (here) but it only shows an config example for
spacy.MultiHashEmbed.v2
architecture and implies using the parameterinclude_static_vectors
.But the
Tagger
architecture (used for pos/morphologizer) doesn't seems to acceptinclude_static_vectors
parameter (if i've correctly understood). So, is there any way to make my morphologizer (Tagger
model) use my vectors? (without training atok2vec
component, if it's possible.)Thanks for reading :)
Beta Was this translation helpful? Give feedback.
All reactions