You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i am new using your package and I have 1 question,
I am Following your tutorials from medium and kaggle, correcting ome issues with the library version and the parameters in there, but i don't find the predicates in any dir. I want to know the weight of a edge between two entities, more than the entities vectorized. It is implemented?
The text was updated successfully, but these errors were encountered:
In a nutshell: we use Word2Vec from gensim. After fitting that model, the object will contain embeddings for all tokens in the documents (which correspond to nodes in the KG). However:
We only return the embeddings of the provided entities list
During walk generation, we hash everything except the entities in the provided list to save memory.
So to find them you will: (i) have to disable hashing (md5_bytes argument) and (ii) include the predicates you're interested in, in your predicate list, or just return everything (you will have to patch the transform() function).
Hi, i am new using your package and I have 1 question,
I am Following your tutorials from medium and kaggle, correcting ome issues with the library version and the parameters in there, but i don't find the predicates in any dir. I want to know the weight of a edge between two entities, more than the entities vectorized. It is implemented?
The text was updated successfully, but these errors were encountered: