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

New page:
{{{
/**
 * Abstract class defines the behavior of activation functions
 */
public abstract class Activation {
  ..
}

/**
 * User-defined sigmoid actiavation function
 */
public class Sigmoid extends Activation {

  @Override
  execute(double value) {
    ..
    return result;
  }

}

Job Configuration interface design:

ANNJob ann = new ANNJob();

}}}

Reply via email to