CS224n-2019-solutions
CS224n-2019-solutions copied to clipboard
Complete solutions for Stanford CS224n, winter, 2019
Hi, I am doing the CS224n course by following the YouTube videos. In the Stanford course page, they have only listed up to assignment 4. For assignment 5, only "Assignment...
Nice work! The version of implementation can reach 22+ BLUE score. However, my implementation have only 0.16+ BLUE score on test dataset. Comparing with your work, I found changing the...
Hello! Thanks for your repo! I found in a4 written part (c), the BLEU score may be wrong. In (i) Regarding c1: p1=0.6, p2=0.5; c2: p1=0.8,p2=0.5. In (ii) c1: p1=0.6,...
I think the code "gradOutsideVecs[negSampleWordIndices] += np.outer((z-1),centerWordVec)*(-1)", at line 147 of word2vec.py, assigment 2, is not right. Because as the annotation says, "Note: The same word may be negatively sampled...
In **a4**, we use `docopt` to parse our options and arguments, but if you try `sh run.sh test` now, you will recognize that the usage `run.py decode [options] MODEL_PATH TEST_SOURCE_FILE...
> 2(b) : A sentence containing n words will be parsed in how many steps ? I think it should need 2*n steps. Because steps include **SHIFT**.