Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hama Wiki" for change 
notification.

The "Neuron" page has been changed by edwardyoon:
https://wiki.apache.org/hama/Neuron?action=diff&rev1=5&rev2=6

  
      // set learning rate and momentum weight
      ann.setLearningRate(0.1);
-     ann.setMomemtumWeight(0.1);
+     ann.setMomentumWeight(0.1);
  
-     // initialize the topology of the model and set the activation function 
and parallel degree.
+     // initialize the topology of the model
+     // set the activation function and parallel degree.
      ann.addLayer(featureDimension, Sigmoid.class, numOfTasks);
      ann.addLayer(featureDimension, Sigmoid.class, numOfTasks);
      ann.addLayer(labelDimension, Sigmoid.class, numOfTasks);

Reply via email to