vrosnet / aforge

Automatically exported from code.google.com/p/aforge
Other
0 stars 1 forks source link

Changing activation functions. #56

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Ex. XOR Problem. Last Layer = neuron should have threshold function. Yet
you can't set function to a layer neither can you change a layer in a network.

I would like to see:
        /// <summary>
        /// Neuron's activation function.
        /// </summary>
        /// 
        public IActivationFunction ActivationFunction
        {
            get { return function; }
            set { function = value; } // this is new
        }

Also add, remove methods to layer, and network.

Original issue reported on code.google.com by BabelLa...@gmail.com on 10 Mar 2008 at 9:25

GoogleCodeExporter commented 8 years ago

Original comment by andrew.k...@gmail.com on 13 May 2008 at 6:46

GoogleCodeExporter commented 8 years ago

Original comment by andrew.k...@gmail.com on 18 Aug 2009 at 2:18

GoogleCodeExporter commented 8 years ago
Added ability to change activation function of neuron/layer/network.

Committed in revision 1049. Will be released in 2.0.1 version.

Original comment by andrew.k...@gmail.com on 27 Aug 2009 at 12:39

GoogleCodeExporter commented 8 years ago

Original comment by andrew.k...@gmail.com on 19 Sep 2009 at 7:11