Skip to content
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
6 changes: 3 additions & 3 deletions week05_nlp/seminar.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@
"source": [
"from gensim.models import Word2Vec\n",
"model = Word2Vec(data_tok, \n",
" size=32, # embedding vector size\n",
" min_count=5, # consider words that occured at least 5 times\n",
" window=5).wv # define context as a 5-word window around the target word"
" vector_size=32, # embedding vector size\n",
" min_count=5, # consider words that occured at least 5 times\n",
" window=5).wv # define context as a 5-word window around the target word"
]
},
{
Expand Down