Skip to content

Analysis Work Flow

The Doom Lab edited this page Aug 20, 2020 · 5 revisions

Clean up Method

Word2Vec Method

  • Use gensim
  • Minimum frequency is 5
  • Number of dimensions: 50, 100, 200, 300, and 500
  • Negative sampling k was 10
  • Sub-sampling parameter to 1e-5
  • Window size was 3 to 13 (i.e. 1 word before and after to 10 words before and after)
  • CBOW and Skip Gram

Analysis Method

Provide Output

  • Include code to recreate these models
  • Include word by dimension output as a data object
  • Include functions to calculate cosine/other similarity measures on the word by dimension data object (if python, we could us the many measures in scipy.spatial.distance)
  • Note that gensim's most_similar function provides the highest cosine on word by dimension data object

Clone this wiki locally