You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the end of word2vec.c there's "malloc" of size EXP_TABLE_SIZE + 1
But the next "for" loop is for(i=0; i < EXP_TABLE_SIZE; ++i)
That means, expTable[EXP_TABLE_SIZE] is uninitialized.
As the result - we can see different program output on the same input data.
Original issue reported on code.google.com by [email protected] on 1 Dec 2014 at 7:11
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 1 Dec 2014 at 7:11The text was updated successfully, but these errors were encountered: