You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by Apache Wiki <wi...@apache.org> on 2015/07/02 03:03:03 UTC

[Hama Wiki] Update of "Neuron" by edwardyoon

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();

}}}