How can I apply multithreading to the backpropagation neural network training?

前端 未结 2 1283
终归单人心
终归单人心 2020-12-29 11:23

For my university project I am creating a neural network that can classify the likelihood that a credit card transaction is fraudulent or not. I am training with backpropag

2条回答
  •  死守一世寂寞
    2020-12-29 11:54

    For using more CPU cores with Java you can just try more options for JVM without changing the code:

    • -server
    • -d64
    • -XX:-UseParallelGC

    and other options at http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp

提交回复
热议问题