Uses of Class
network.aika.ActivationFunction
-
Packages that use ActivationFunction Package Description network.aika network.aika.neuron network.aika.neuron.activation -
-
Uses of ActivationFunction in network.aika
Methods in network.aika that return ActivationFunction Modifier and Type Method Description static ActivationFunctionActivationFunction. valueOf(String name)Returns the enum constant of this type with the specified name.static ActivationFunction[]ActivationFunction. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in network.aika with parameters of type ActivationFunction Modifier and Type Method Description NeuronModel. createNeuron(String label, String outputText, INeuron.Type type, ActivationFunction actF) -
Uses of ActivationFunction in network.aika.neuron
Methods in network.aika.neuron that return ActivationFunction Modifier and Type Method Description ActivationFunctionINeuron. getActivationFunction()Methods in network.aika.neuron with parameters of type ActivationFunction Modifier and Type Method Description static NeuronNeuron. init(Document doc, Neuron n, double bias, ActivationFunction activationFunction, INeuron.Type type, Collection<Neuron.Builder> inputs)static NeuronNeuron. init(Document doc, Neuron n, double bias, ActivationFunction activationFunction, INeuron.Type type, Collection<Synapse.Builder> synapseBuilders, Collection<Relation.Builder> relationBuilders)Initializes a neuron with the given bias.static NeuronNeuron. init(Document doc, Neuron n, double bias, ActivationFunction activationFunction, INeuron.Type type, Neuron.Builder... inputs)Creates a neuron with the given bias.static NeuronNeuron. init(Neuron n, double bias, ActivationFunction activationFunction, INeuron.Type type, Collection<Neuron.Builder> inputs)static NeuronNeuron. init(Neuron n, double bias, ActivationFunction activationFunction, INeuron.Type type, Collection<Synapse.Builder> synapseBuilders, Collection<Relation.Builder> relationBuilders)Initializes a neuron with the given bias.static NeuronNeuron. init(Neuron n, double bias, ActivationFunction activationFunction, INeuron.Type type, Neuron.Builder... inputs)Creates a neuron with the given bias.Constructors in network.aika.neuron with parameters of type ActivationFunction Constructor Description INeuron(Model m, String label, String outputText, INeuron.Type type, ActivationFunction actF) -
Uses of ActivationFunction in network.aika.neuron.activation
Methods in network.aika.neuron.activation that return ActivationFunction Modifier and Type Method Description ActivationFunctionActivation. getActivationFunction()
-