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
I'm eager to see this project working :)
So... I was playing with the dev branch and I'm unable to load the pre-trained GoogleNews-vectors-negative300.bin (300-dimensional vectors for 3 million words and phrases) due to the memory allocation restriction in managed arrays.
Have you considered using System.IO.MemoryMappedFiles.MemoryMappedFile to overcome this rather than declaring large arrays?
The text was updated successfully, but these errors were encountered:
@johnearnshaw, hi. I tried to load my trained 200-dimensional vectors for 1 million words - was ok. So, i think your computer doesn't have enough memory, because algorithm uses manage arrays and allocate memory for needed size
I'm eager to see this project working :)
So... I was playing with the dev branch and I'm unable to load the pre-trained GoogleNews-vectors-negative300.bin (300-dimensional vectors for 3 million words and phrases) due to the memory allocation restriction in managed arrays.
Have you considered using System.IO.MemoryMappedFiles.MemoryMappedFile to overcome this rather than declaring large arrays?
The text was updated successfully, but these errors were encountered: