Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added function return_word_vector(self,word)... #84

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions glove/glove.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,3 +307,21 @@ def most_similar_paragraph(self, paragraph, number=5, **kwargs):
paragraph_vector = self.transform_paragraph(paragraph, **kwargs)

return self._similarity_query(paragraph_vector, number)

def return_word_vector(self, word):
"""
returns glove vector corresponding to word
"""

if self.word_vectors is None:
raise Exception('Model must be fit before querying')

if self.dictionary is None:
raise Exception('No word dictionary supplied')

try:
word_idx = self.dictionary[word]
except KeyError:
raise Exception('Word not in dictionary')

return self.word_vectors[word_idx]