deil87 / automl-genetic

Applying genetic programming to AutoML https://travis-ci.org/deil87/automl-genetic.svg?branch=master
12 stars 3 forks source link

Implement base algorithms Sigmoid, SigmoidNorm, Sine, Polynomial, Gaussian, Exponential and Linear. #26

Open deil87 opened 6 years ago

deil87 commented 6 years ago

Spark as far as I see has perceptron with only sigmoid activation functions…. 

From the source code:
*Each layer has sigmoid activation function, output layer has softmax.

Or we can fork spark

deil87 commented 6 years ago

Take a look at Layer.scala def multiLayerPerceptron() {}

deil87 commented 6 years ago

No...those are simple one neuron perceptrons.