cs224n 2019assignment 1

CS224N Assignment 1: Exploring Word Vectors (25 Points)

Welcome to CS224n!

Before you start, make sure you read the README.txt in the same directory as this notebook.

import nltk
#nltk.download()

All Import Statements Defined Here

Note: Do not add to this list.

All the dependencies you need, can be installed by running .

----------------

import sys
assert sys.version_info[0]==3
assert sys.version_info[1] >= 5

from gensim.models import KeyedVectors
from gensim.test.utils import datapath
import pprint
import matplotlib.pyplot as plt
plt.rcParams[‘figure.figsize’] = [10, 5]
import nltk
#nltk.download(‘reuters’)
from nltk.corpus import reuters
import numpy as np
import random
import scipy as sp
from sklearn.decomposition import TruncatedSVD
from sklearn.decomposition import PCA

START_TOKEN = ‘’
END_TOKEN = ‘’

np.random.seed(0)
random.seed(0)

----------------

Please Write Your SUNet ID Here:

Word Vectors

Word Vectors are often used as a fundamental component for downstream NLP tasks, e.g. question answering, text generation, translation, etc., so it is important to build some intuitions as to their strengths and weaknesses. Here, you will explore two types of word vectors: those derived from co-occurrence matrices, and those derived via word2vec.

Assignment Notes: Please make sure to save the notebook as you go along. Submission Instructions are located at the bottom of the notebook.

Note on Terminology: The terms “word vectors” and “word embeddings” are often used interchangeably. The term “embedding” refers to the fact that we are encoding aspects of a word’s meaning in a lower dimensional space. As Wikipedia states, “conceptually it involves a mathematical embedding from a space with one dimension per word to a continuous vector space with a much lower dimension”.

Part 1: Count-Based Word Vectors (10 points)

Most word vector models start from the following idea:

You shall know a word by the company it keeps (Firth, J. R. 1957:11)

Many word vector implementations are driven by the idea that similar words, i.e., (near) synonyms, will be used in similar contexts. As a result, similar words will often be spoken or written along with a shared subset of words, i.e., contexts. By examining these contexts, we can try to develop embeddings for our words. With this intuition in mind, many “old school” approaches to constructing word vectors relied on word counts. Here we elaborate upon one of those strategies, co-occurrence matrices (for more information, see here or here).

Co-Occurrence

A co-occurrence matrix counts how often things co-occur in some environment. Given some word w i w_i wi occurring in the document, we consider the context window surrounding w i w_i wi. Supposing our fixed window size is n n n, then this is the n n n preceding and n n n subsequent words in that document, i.e. words w i − n … w i − 1 w_{i-n} \dots w_{i-1} winwi1 and w i + 1 … w i + n w_{i+1} \dots w_{i+n} wi+1wi+n. We build a co-occurrence matrix M M M, which is a symmetric word-by-word matrix in which M i j M_{ij} Mij is the number of times w j w_j wj appears inside w i w_i wi's window.

Example: Co-Occurrence with Fixed Window of n=1:

Document 1: “all that glitters is not gold”

Document 2: “all is well that ends well”

*STARTallthatglittersisnotgoldwellendsEND
START0200000000
all2010100000
that0101000110
glitters0010100000
is0101010100
not0000101000
gold0000010001
well0010100011
ends0010000100
END0000001100

Note: In NLP, we often add START and END tokens to represent the beginning and end of sentences, paragraphs or documents. In thise case we imagine START and END tokens encapsulating each document, e.g., “START All that glitters is not gold END”, and include these tokens in our co-occurrence counts.

The rows (or columns) of this matrix provide one type of word vectors (those based on word-word co-occurrence), but the vectors will be large in general (linear in the number of distinct words in a corpus). Thus, our next step is to run dimensionality reduction. In particular, we will run SVD (Singular Value Decomposition), which is a kind of generalized PCA (Principal Components Analysis) to select the top k k k principal components. Here’s a visualization of dimensionality reduction with SVD. In this picture our co-occurrence matrix is A A A with n n n rows corresponding to n n n words. We obtain a full matrix decomposition, with the singular values ordered in the diagonal S S S matrix, and our new, shorter length- k k k word vectors in U k U_k Uk.

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-vz2eBbpP-1593981221872)(imgs/svd.png “SVD”)]

This reduced-dimensionality co-occurrence representation preserves semantic relationships between words, e.g. doctor and hospital will be closer than doctor and dog.

Notes: If you can barely remember what an eigenvalue is, here’s a slow, friendly introduction to SVD. If you want to learn more thoroughly about PCA or SVD, feel free to check out lectures 7, 8, and 9 of CS168. These course notes provide a great high-level treatment of these general purpose algorithms. Though, for the purpose of this class, you only need to know how to extract the k-dimensional embeddings by utilizing pre-programmed implementations of these algorithms from the numpy, scipy, or sklearn python packages. In practice, it is challenging to apply full SVD to large corpora because of the memory needed to perform PCA or SVD. However, if you only want the top k k k vector components for relatively small k k k — known as Truncated SVD — then there are reasonably scalable techniques to compute those iteratively.

Plotting Co-Occurrence Word Embeddings

Here, we will be using the Reuters (business and financial news) corpus. If you haven’t run the import cell at the top of this page, please run it now (click it and press SHIFT-RETURN). The corpus consists of 10,788 news documents totaling 1.3 million words. These documents span 90 categories and are split into train and test. For more details, please see https://www.nltk.org/book/ch02.html. We provide a read_corpus function below that pulls out only articles from the “crude” (i.e. news articles about oil, gas, etc.) category. The function also adds START and END tokens to each of the documents, and lowercases words. You do not have perform any other kind of pre-processing.

def read_corpus(category=“crude”):
“”" Read files from the specified Reuter’s category.
Params:
category (string): category name
Return:
list of lists, with words from each of the processed files
“”"
files = reuters.fileids(category)
return [[START_TOKEN] + [w.lower() for w in list(reuters.words(f))] + [END_TOKEN] for f in files]

Let’s have a look what these documents are like….

reuters_corpus = read_corpus()
pprint.pprint(reuters_corpus[:3], compact=True, width=100)

Question 1.1: Implement distinct_words [code] (2 points)

Write a method to work out the distinct words (word types) that occur in the corpus. You can do this with for loops, but it’s more efficient to do it with Python list comprehensions. In particular, this may be useful to flatten a list of lists. If you’re not familiar with Python list comprehensions in general, here’s more information.

You may find it useful to use Python sets to remove duplicate words.

def distinct_words(corpus):
“”" Determine a list of distinct words for the corpus.
Params:
corpus (list of list of strings): corpus of documents
Return:
corpus_words (list of strings): list of distinct words across the corpus, sorted (using python ‘sorted’ function)
num_corpus_words (integer): number of distinct words across the corpus
“”"
corpus_words = []
num_corpus_words = -1

# ------------------
# Write your implementation here.
corpus_words = [word for line in corpus for word in line]
"""上面的句子等于
for line in corpus:
    for word in line:
        corpus_words.append(word)"""
corpus_words_set = set(corpus_words)
corpus_words = sorted(list(corpus_words_set))
num_corpus_words = len(corpus_words)

# ------------------

return corpus_words, num_corpus_words

---------------------

Run this sanity check

Note that this not an exhaustive check for correctness.

---------------------

Define toy corpus

test_corpus = [“START All that glitters isn’t gold END”.split(" “), “START All’s well that ends well END”.split(” ")]
test_corpus_words, num_corpus_words = distinct_words(test_corpus)

Correct answers

ans_test_corpus_words = sorted(list(set([“START”, “All”, “ends”, “that”, “gold”, “All’s”, “glitters”, “isn’t”, “well”, “END”])))
ans_num_corpus_words = len(ans_test_corpus_words)

Test correct number of words

assert(num_corpus_words == ans_num_corpus_words), “Incorrect number of distinct words. Correct: {}. Yours: {}”.format(ans_num_corpus_words, num_corpus_words)

Test correct words

assert (test_corpus_words == ans_test_corpus_words), “Incorrect corpus_words.\nCorrect: {}\nYours: {}”.format(str(ans_test_corpus_words), str(test_corpus_words))

Print Success

print ("-" * 80)
print(“Passed All Tests!”)
print ("-" * 80)

Question 1.2: Implement compute_co_occurrence_matrix [code] (3 points)

Write a method that constructs a co-occurrence matrix for a certain window-size n n n (with a default of 4), considering words n n n before and n n n after the word in the center of the window. Here, we start to use numpy (np) to represent vectors, matrices, and tensors. If you’re not familiar with NumPy, there’s a NumPy tutorial in the second half of this cs231n Python NumPy tutorial.

def compute_co_occurrence_matrix(corpus, window_size=4):
“”" Compute co-occurrence matrix for the given corpus and window_size (default of 4).

    Note: Each word in a document should be at the center of a window. Words near edges will have a smaller
          number of co-occurring words.
          
          For example, if we take the document "START All that glitters is not gold END" with window size of 4,
          "All" will co-occur with "START", "that", "glitters", "is", and "not".

    Params:
        corpus (list of list of strings): corpus of documents
        window_size (int): size of context window
    Return:
        M (numpy matrix of shape (number of corpus words, number of corpus words)): 
            Co-occurence matrix of word counts. 
            The ordering of the words in the rows/columns should be the same as the ordering of the words given by the distinct_words function.
        word2Ind (dict): dictionary that maps word to index (i.e. row/column number) for matrix M.
"""
words, num_words = distinct_words(corpus)
M = None
word2Ind = {}

# ------------------
# Write your implementation here.
for i in range(num_words):
    word2Ind[words[i]] = i
M = np.zeros((num_words, num_words))
for line in corpus:
    for i in range(len(line)):
        target = line[i]
        target_index = word2Ind[target]
        
        left = max(i - window_size, 0)
        right = min(i + window_size, len(line) - 1)
        for j in range(left, i):
            window_word = line[j]
            M[target_index][word2Ind[window_word]] += 1
            M[word2Ind[window_word]][target_index] += 1

# ------------------

return M, word2Ind

---------------------

Run this sanity check

Note that this is not an exhaustive check for correctness.

---------------------

Define toy corpus and get student’s co-occurrence matrix

test_corpus = [“START All that glitters isn’t gold END”.split(" “), “START All’s well that ends well END”.split(” ")]
M_test, word2Ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)

Correct M and word2Ind

M_test_ans = np.array(
[[0., 0., 0., 1., 0., 0., 0., 0., 1., 0.,],
[0., 0., 0., 1., 0., 0., 0., 0., 0., 1.,],
[0., 0., 0., 0., 0., 0., 1., 0., 0., 1.,],
[1., 1., 0., 0., 0., 0., 0., 0., 0., 0.,],
[0., 0., 0., 0., 0., 0., 0., 0., 1., 1.,],
[0., 0., 0., 0., 0., 0., 0., 1., 1., 0.,],
[0., 0., 1., 0., 0., 0., 0., 1., 0., 0.,],
[0., 0., 0., 0., 0., 1., 1., 0., 0., 0.,],
[1., 0., 0., 0., 1., 1., 0., 0., 0., 1.,],
[0., 1., 1., 0., 1., 0., 0., 0., 1., 0.,]]
)
word2Ind_ans = {‘All’: 0, “All’s”: 1, ‘END’: 2, ‘START’: 3, ‘ends’: 4, ‘glitters’: 5, ‘gold’: 6, “isn’t”: 7, ‘that’: 8, ‘well’: 9}

Test correct word2Ind

assert (word2Ind_ans == word2Ind_test), “Your word2Ind is incorrect:\nCorrect: {}\nYours: {}”.format(word2Ind_ans, word2Ind_test)

Test correct M shape

assert (M_test.shape == M_test_ans.shape), “M matrix has incorrect shape.\nCorrect: {}\nYours: {}”.format(M_test.shape, M_test_ans.shape)

Test correct M values

for w1 in word2Ind_ans.keys():
idx1 = word2Ind_ans[w1]
for w2 in word2Ind_ans.keys():
idx2 = word2Ind_ans[w2]
student = M_test[idx1, idx2]
correct = M_test_ans[idx1, idx2]
if student != correct:
print(“Correct M:”)
print(M_test_ans)
print("Your M: ")
print(M_test)
raise AssertionError(“Incorrect count at index ({}, {})=({}, {}) in matrix M. Yours has {} but should have {}.”.format(idx1, idx2, w1, w2, student, correct))

Print Success

print ("-" * 80)
print(“Passed All Tests!”)
print ("-" * 80)

Question 1.3: Implement reduce_to_k_dim [code] (1 point)

Construct a method that performs dimensionality reduction on the matrix to produce k-dimensional embeddings. Use SVD to take the top k components and produce a new matrix of k-dimensional embeddings.

Note: All of numpy, scipy, and scikit-learn (sklearn) provide some implementation of SVD, but only scipy and sklearn provide an implementation of Truncated SVD, and only sklearn provides an efficient randomized algorithm for calculating large-scale Truncated SVD. So please use sklearn.decomposition.TruncatedSVD.

def reduce_to_k_dim(M, k=2):
“”" Reduce a co-occurence count matrix of dimensionality (num_corpus_words, num_corpus_words)
to a matrix of dimensionality (num_corpus_words, k) using the following SVD function from Scikit-Learn:
- http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html

    Params:
        M (numpy matrix of shape (number of corpus words, number of corpus words)): co-occurence matrix of word counts
        k (int): embedding size of each word after dimension reduction
    Return:
        M_reduced (numpy matrix of shape (number of corpus words, k)): matrix of k-dimensioal word embeddings.
                In terms of the SVD from math class, this actually returns U * S
"""    
n_iters = 10     # Use this parameter in your call to `TruncatedSVD`
M_reduced = None
print("Running Truncated SVD over %i words..." % (M.shape[0]))

    # ------------------
    # Write your implementation here.
svd = TruncatedSVD(n_components = k, n_iter = n_iters, random_state = 123, tol = 0.0)
M_reduced = svd.fit_transform(M)
print(M_reduced.shape)

    # ------------------

print("Done.")
return M_reduced

---------------------

Run this sanity check

Note that this not an exhaustive check for correctness

In fact we only check that your M_reduced has the right dimensions.

---------------------

Define toy corpus and run student code

test_corpus = [“START All that glitters isn’t gold END”.split(" “), “START All’s well that ends well END”.split(” ")]
M_test, word2Ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)
M_test_reduced = reduce_to_k_dim(M_test, k=2)

Test proper dimensions

assert (M_test_reduced.shape[0] == 10), “M_reduced has {} rows; should have {}”.format(M_test_reduced.shape[0], 10)
assert (M_test_reduced.shape[1] == 2), “M_reduced has {} columns; should have {}”.format(M_test_reduced.shape[1], 2)

Print Success

print ("-" * 80)
print(“Passed All Tests!”)
print ("-" * 80)

Question 1.4: Implement plot_embeddings [code] (1 point)

Here you will write a function to plot a set of 2D vectors in 2D space. For graphs, we will use Matplotlib (plt).

For this example, you may find it useful to adapt this code. In the future, a good way to make a plot is to look at the Matplotlib gallery, find a plot that looks somewhat like what you want, and adapt the code they give.

def plot_embeddings(M_reduced, word2Ind, words):
“”" Plot in a scatterplot the embeddings of the words specified in the list “words”.
NOTE: do not plot all the words listed in M_reduced / word2Ind.
Include a label next to each point.

    Params:
        M_reduced (numpy matrix of shape (number of unique words in the corpus , k)): matrix of k-dimensioal word embeddings
        word2Ind (dict): dictionary that maps word to indices for matrix M
        words (list of strings): words whose embeddings we want to visualize
"""

# ------------------
# Write your implementation here.
words_index = [word2Ind[word] for word in words]
print(words_index)
x_coords = [M_reduced[word_index][0] for word_index in words_index]
y_coords = [M_reduced[word_index][1] for word_index in words_index]

for i, word in enumerate(words):
    x = x_coords[i]
    y = y_coords[i]
    plt.scatter(x, y, marker = 'x', color = 'red')
    plt.text(x + 0.0003, y + 0.0003, word, fontsize = 9)
plt.show()

# ------------------

---------------------

Run this sanity check

Note that this not an exhaustive check for correctness.

The plot produced should look like the “test solution plot” depicted below.

---------------------

print ("-" * 80)
print (“Outputted Plot:”)

M_reduced_plot_test = np.array([[1, 1], [-1, -1], [1, -1], [-1, 1], [0, 0]])
word2Ind_plot_test = {‘test1’: 0, ‘test2’: 1, ‘test3’: 2, ‘test4’: 3, ‘test5’: 4}
words = [‘test1’, ‘test2’, ‘test3’, ‘test4’, ‘test5’]
plot_embeddings(M_reduced_plot_test, word2Ind_plot_test, words)

print ("-" * 80)

Test Plot Solution


Question 1.5: Co-Occurrence Plot Analysis [written] (3 points)

Now we will put together all the parts you have written! We will compute the co-occurrence matrix with fixed window of 4, over the Reuters “crude” corpus. Then we will use TruncatedSVD to compute 2-dimensional embeddings of each word. TruncatedSVD returns U*S, so we normalize the returned vectors, so that all the vectors will appear around the unit circle (therefore closeness is directional closeness). Note: The line of code below that does the normalizing uses the NumPy concept of broadcasting. If you don’t know about broadcasting, check out
Computation on Arrays: Broadcasting by Jake VanderPlas.

Run the below cell to produce the plot. It’ll probably take a few seconds to run. What clusters together in 2-dimensional embedding space? What doesn’t cluster together that you might think should have? Note: “bpd” stands for “barrels per day” and is a commonly used abbreviation in crude oil topic articles.

-----------------------------

Run This Cell to Produce Your Plot

------------------------------

reuters_corpus = read_corpus()
M_co_occurrence, word2Ind_co_occurrence = compute_co_occurrence_matrix(reuters_corpus)
M_reduced_co_occurrence = reduce_to_k_dim(M_co_occurrence, k=2)

Rescale (normalize) the rows to make them each of unit-length

M_lengths = np.linalg.norm(M_reduced_co_occurrence, axis=1)
M_normalized = M_reduced_co_occurrence / M_lengths[:, np.newaxis] # broadcasting

words = [‘barrels’, ‘bpd’, ‘ecuador’, ‘energy’, ‘industry’, ‘kuwait’, ‘oil’, ‘output’, ‘petroleum’, ‘venezuela’]
plot_embeddings(M_normalized, word2Ind_co_occurrence, words)

Write your answer here.

Part 2: Prediction-Based Word Vectors (15 points)

As discussed in class, more recently prediction-based word vectors have come into fashion, e.g. word2vec. Here, we shall explore the embeddings produced by word2vec. Please revisit the class notes and lecture slides for more details on the word2vec algorithm. If you’re feeling adventurous, challenge yourself and try reading the original paper.

Then run the following cells to load the word2vec vectors into memory. Note: This might take several minutes.

def load_word2vec():
“”" Load Word2Vec Vectors
Return:
wv_from_bin: All 3 million embeddings, each lengh 300
“”"
import gensim
import gensim.downloader as api
#wv_from_bin = gensim.models.word2vec.Word2Vec.load(“E:/软件包源/word2vec-google-news-300/GoogleNews-vectors-negative300.bin”)
wv_from_bin = gensim.models.KeyedVectors.load_word2vec_format(“E:/软件包源/word2vec-google-news-300/GoogleNews-vectors-negative300.bin”,binary=True)
#wv_from_bin = api.load(“word2vec-google-news-300”)
vocab = list(wv_from_bin.vocab.keys())
print(“Loaded vocab size %i” % len(vocab))
return wv_from_bin

-----------------------------------

Run Cell to Load Word Vectors

Note: This may take several minutes

-----------------------------------

wv_from_bin = load_word2vec()

Note: If you are receiving out of memory issues on your local machine, try closing other applications to free more memory on your device. You may want to try restarting your machine so that you can free up extra memory. Then immediately run the jupyter notebook and see if you can load the word vectors properly. If you still have problems with loading the embeddings onto your local machine after this, please follow the Piazza instructions, as how to run remotely on Stanford Farmshare machines.

Reducing dimensionality of Word2Vec Word Embeddings

Let’s directly compare the word2vec embeddings to those of the co-occurrence matrix. Run the following cells to:

  1. Put the 3 million word2vec vectors into a matrix M
  2. Run reduce_to_k_dim (your Truncated SVD function) to reduce the vectors from 300-dimensional to 2-dimensional.

def get_matrix_of_vectors(wv_from_bin, required_words=[‘barrels’, ‘bpd’, ‘ecuador’, ‘energy’, ‘industry’, ‘kuwait’, ‘oil’, ‘output’, ‘petroleum’, ‘venezuela’]):
“”" Put the word2vec vectors into a matrix M.
Param:
wv_from_bin: KeyedVectors object; the 3 million word2vec vectors loaded from file
Return:
M: numpy matrix shape (num words, 300) containing the vectors
word2Ind: dictionary mapping each word to its row number in M
“”"
import random
words = list(wv_from_bin.vocab.keys())
print(“Shuffling words …”)
random.shuffle(words)
words = words[:10000]
print(“Putting %i words into word2Ind and matrix M…” % len(words))
word2Ind = {}
M = []
curInd = 0
for w in words:
try:
M.append(wv_from_bin.word_vec(w))
word2Ind[w] = curInd
curInd += 1
except KeyError:
continue
for w in required_words:
try:
M.append(wv_from_bin.word_vec(w))
word2Ind[w] = curInd
curInd += 1
except KeyError:
continue
M = np.stack(M)
print(“Done.”)
return M, word2Ind

-----------------------------------------------------------------

Run Cell to Reduce 300-Dimensinal Word Embeddings to k Dimensions

Note: This may take several minutes

-----------------------------------------------------------------

M, word2Ind = get_matrix_of_vectors(wv_from_bin)
M_reduced = reduce_to_k_dim(M, k=2)

Question 2.1: Word2Vec Plot Analysis [written] (4 points)

Run the cell below to plot the 2D word2vec embeddings for ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'venezuela'].

What clusters together in 2-dimensional embedding space? What doesn’t cluster together that you might think should have? How is the plot different from the one generated earlier from the co-occurrence matrix?

words = [‘barrels’, ‘bpd’, ‘ecuador’, ‘energy’, ‘industry’, ‘kuwait’, ‘oil’, ‘output’, ‘petroleum’, ‘venezuela’]
plot_embeddings(M_reduced, word2Ind, words)

Write your answer here.

Cosine Similarity

Now that we have word vectors, we need a way to quantify the similarity between individual words, according to these vectors. One such metric is cosine-similarity. We will be using this to find words that are “close” and “far” from one another.

We can think of n-dimensional vectors as points in n-dimensional space. If we take this perspective L1 and L2 Distances help quantify the amount of space “we must travel” to get between these two points. Another approach is to examine the angle between two vectors. From trigonometry we know that:

Instead of computing the actual angle, we can leave the similarity in terms of s i m i l a r i t y = c o s ( Θ ) similarity = cos(\Theta) similarity=cos(Θ). Formally the Cosine Similarity s s s between two vectors p p p and q q q is defined as:

s = p ⋅ q ∣ ∣ p ∣ ∣ ∣ ∣ q ∣ ∣ ,  where  s ∈ [ − 1 , 1 ] s = \frac{p \cdot q}{||p|| ||q||}, \textrm{ where } s \in [-1, 1] s=pqpq, where s[1,1]

Question 2.2: Polysemous Words (2 points) [code + written]

Find a polysemous word (for example, “leaves” or “scoop”) such that the top-10 most similar words (according to cosine similarity) contains related words from both meanings. For example, “leaves” has both “vanishes” and “stalks” in the top 10, and “scoop” has both “handed_waffle_cone” and “lowdown”. You will probably need to try several polysemous words before you find one. Please state the polysemous word you discover and the multiple meanings that occur in the top 10. Why do you think many of the polysemous words you tried didn’t work?

Note: You should use the wv_from_bin.most_similar(word) function to get the top 10 similar words. This function ranks all other words in the vocabulary with respect to their cosine similarity to the given word. For further assistance please check the GenSim documentation.

------------------

Write your polysemous word exploration code here.

#wv_from_bin.most_similar("")
print(wv_from_bin.most_similar([“woman”]))
print(’-------------’)
print(wv_from_bin.most_similar([‘king’]))
print(’-------------’)
print(wv_from_bin.most_similar([‘queue’]))
print(’-------------’)
print(wv_from_bin.most_similar([‘woman’, ‘king’, ‘queue’]))

------------------

Write your answer here.

Question 2.3: Synonyms & Antonyms (2 points) [code + written]

When considering Cosine Similarity, it’s often more convenient to think of Cosine Distance, which is simply 1 - Cosine Similarity.

Find three words (w1,w2,w3) where w1 and w2 are synonyms and w1 and w3 are antonyms, but Cosine Distance(w1,w3) < Cosine Distance(w1,w2). For example, w1=“happy” is closer to w3=“sad” than to w2=“cheerful”.

Once you have found your example, please give a possible explanation for why this counter-intuitive result may have happened.

You should use the the wv_from_bin.distance(w1, w2) function here in order to compute the cosine distance between two words. Please see the GenSim documentation for further assistance.

------------------

Write your synonym & antonym exploration code here.

w1 = “happy”
w2 = “cheerful”
w3 = “sad”
w1_w2_dist = wv_from_bin.distance(w1, w2)
w1_w3_dist = wv_from_bin.distance(w1, w3)

print(“Synonyms {}, {} have cosine distance: {}”.format(w1, w2, w1_w2_dist))
print(“Antonyms {}, {} have cosine distance: {}”.format(w1, w3, w1_w3_dist))

------------------

Write your answer here.

Solving Analogies with Word Vectors

Word2Vec vectors have been shown to sometimes exhibit the ability to solve analogies.

As an example, for the analogy “man : king :: woman : x”, what is x?

In the cell below, we show you how to use word vectors to find x. The most_similar function finds words that are most similar to the words in the positive list and most dissimilar from the words in the negative list. The answer to the analogy will be the word ranked most similar (largest numerical value).

Note: Further Documentation on the most_similar function can be found within the GenSim documentation.

Run this cell to answer the analogy – man : king :: woman : x

pprint.pprint(wv_from_bin.most_similar(positive=[‘woman’, ‘king’], negative=[‘man’]))

Question 2.4: Finding Analogies [code + written] (2 Points)

Find an example of analogy that holds according to these vectors (i.e. the intended word is ranked top). In your solution please state the full analogy in the form x:y :: a:b. If you believe the analogy is complicated, explain why the analogy holds in one or two sentences.

Note: You may have to try many analogies to find one that works!

------------------

Write your analogy exploration code here.

pprint.pprint(wv_from_bin.most_similar(positive=[‘doctor’,‘patient’], negative=[‘student’]))

------------------

Write your answer here.

Question 2.5: Incorrect Analogy [code + written] (1 point)

Find an example of analogy that does not hold according to these vectors. In your solution, state the intended analogy in the form x:y :: a:b, and state the (incorrect) value of b according to the word vectors.

------------------

Write your incorrect analogy exploration code here.

pprint.pprint(wv_from_bin.most_similar(positive=[‘man’,‘king’], negative=[‘woman’]))

------------------

Write your answer here.

Question 2.6: Guided Analysis of Bias in Word Vectors [written] (1 point)

It’s important to be cognizant of the biases (gender, race, sexual orientation etc.) implicit to our word embeddings.

Run the cell below, to examine (a) which terms are most similar to “woman” and “boss” and most dissimilar to “man”, and (b) which terms are most similar to “man” and “boss” and most dissimilar to “woman”. What do you find in the top 10?

Run this cell

Here positive indicates the list of words to be similar to and negative indicates the list of words to be

most dissimilar from.

pprint.pprint(wv_from_bin.most_similar(positive=[‘woman’, ‘boss’], negative=[‘man’]))
print()
pprint.pprint(wv_from_bin.most_similar(positive=[‘man’, ‘boss’], negative=[‘woman’]))

Write your answer here.

Question 2.7: Independent Analysis of Bias in Word Vectors [code + written] (2 points)

Use the most_similar function to find another case where some bias is exhibited by the vectors. Please briefly explain the example of bias that you discover.

------------------

Write your bias exploration code here.

pprint.pprint(wv_from_bin.most_similar(positive=[‘job’,‘man’], negative=[‘woman’]))
print()
pprint.pprint(wv_from_bin.most_similar(positive=[‘job’,‘woman’], negative=[‘man’]))

------------------

Write your answer here.

Question 2.8: Thinking About Bias [written] (1 point)

What might be the cause of these biases in the word vectors?

Write your answer here.

Submission Instructions

  1. Click the Save button at the top of the Jupyter Notebook.
  2. Please make sure to have entered your SUNET ID above.
  3. Select Cell -> All Output -> Clear. This will clear all the outputs from all cells (but will keep the content of ll cells).
  4. Select Cell -> Run All. This will run all the cells in order, and will take several minutes.
  5. Once you’ve rerun everything, select File -> Download as -> PDF via LaTeX
  6. Look at the PDF file and make sure all your solutions are there, displayed correctly. The PDF is the only thing your graders will see!
  7. Submit your PDF on Gradescope.

原文参考 略有改动:https://blog.csdn.net/weixin_30588827/article/details/95471211

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值