Created
July 7, 2016 15:30
-
-
Save HennIdan/b932b32633d81c967f34d0fd769ef302 to your computer and use it in GitHub Desktop.
Revisions
-
HennIdan created this gist
Jul 7, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ MultiLayerConfiguration conf = new NeuralNetConfiguration.Builder() .iterations(1) .weightInit(WeightInit.XAVIER) .activation("relu") .optimizationAlgo(OptimizationAlgorithm.STOCHASTIC_GRADIENT_DESCENT) .learningRate(0.05) // ... other hyperparameters .backprop(true) .build();