Uses of Class
network.aika.neuron.Synapse.Builder
-
Packages that use Synapse.Builder Package Description network.aika.neuron -
-
Uses of Synapse.Builder in network.aika.neuron
Methods in network.aika.neuron that return Synapse.Builder Modifier and Type Method Description Synapse.BuilderSynapse.Builder. setBias(double bias)The bias of this input that will later on be added to the neurons bias.Synapse.BuilderSynapse.Builder. setDistanceFunction(DistanceFunction distFunc)Synapse.BuilderSynapse.Builder. setIdentity(boolean identity)Synapse.BuilderSynapse.Builder. setLimit(double limit)Synapse.BuilderSynapse.Builder. setNeuron(Neuron neuron)Determines the input neuron.Synapse.BuilderSynapse.Builder. setRecurrent(boolean recurrent)The propertyrecurrentspecifies if input is a recurrent feedback link.Synapse.BuilderSynapse.Builder. setSynapseId(int synapseId)Synapse.BuilderSynapse.Builder. setWeight(double weight)The synapse weight of this input.Method parameters in network.aika.neuron with type arguments of type Synapse.Builder Modifier and Type Method Description 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(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, INeuron.Type type, Collection<Synapse.Builder> synapseBuilders, Collection<Relation.Builder> relationBuilders)Creates a neuron with the given bias.
-