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