NLP - Word Embeddings
Given the following Python code snippet using pre-trained GloVe embeddings, what will be the output?
from gensim.models import KeyedVectors
glove = KeyedVectors.load_word2vec_format('glove.6B.50d.txt', binary=False)
result = glove.similarity('king', 'queen')
print(round(result, 2))