I am new to gloVe word embeddings for nlp/deep learning models in R but I find them very useful. I am experiencing problems implementing the model in r. When I use correct constructor:
glove <- GlobalVectors$new(word_vectors_szie = 50, vocabulary = vocab, x_max = 20)
I get the following error:
Error in .subset2(public_bind_env, "initialize")(...) : unused arguments (word_vectors_size = 50, vocabulary = vocab)
Any thoughts on why? Any solutions?