I am trying to increase the java heap size for jar file that launches easy neurons program. There is a patch file that i tried to modify to be like that
java -jar easyNeurons.jar -Xmx1024M -Xms1024M
but I still get VectorSizeMismatchException
I am trying to increase the java heap size for jar file that launches easy neurons program. There is a patch file that i tried to modify to be like that
java -jar easyNeurons.jar -Xmx1024M -Xms1024M
but I still get VectorSizeMismatchException
When a Java program runs out of memory, you get OutOfMemoryException
, not VectorSizeMismatchException
.
VectorSizeMismatchException
indicates
vector size does not match the network input or training element size
(see the docs).