Uses of Class
network.aika.neuron.Neuron
-
Packages that use Neuron Package Description network.aika network.aika.lattice network.aika.lattice.activation network.aika.neuron network.aika.neuron.activation network.aika.neuron.relation -
-
Uses of Neuron in network.aika
Methods in network.aika that return Neuron Modifier and Type Method Description NeuronModel. createNeuron(String label, INeuron.Type type)NeuronModel. createNeuron(String label, INeuron.Type type, String outputText)NeuronModel. createNeuron(String label, INeuron.Type type, ActivationFunction actF)NeuronModel. createNeuron(String label, INeuron.Type type, ActivationFunction actF, String outputText)NeuronModel. createNeuron(INeuron.Type type)NeuronModel. lookupNeuron(int id)Methods in network.aika that return types with arguments of type Neuron Modifier and Type Method Description Collection<Neuron>Model. getActiveNeurons()Methods in network.aika with parameters of type Neuron Modifier and Type Method Description INeuronModel. readNeuron(DataInput in, Neuron p) -
Uses of Neuron in network.aika.lattice
Methods in network.aika.lattice that return Neuron Modifier and Type Method Description NeuronOrNode. getOutputNeuron()Methods in network.aika.lattice with parameters of type Neuron Modifier and Type Method Description voidInputNode. setInputNeuron(Neuron n)voidOrNode. setOutputNeuron(Neuron n) -
Uses of Neuron in network.aika.lattice.activation
Methods in network.aika.lattice.activation with parameters of type Neuron Modifier and Type Method Description Collection<Link>OrActivation.Link. getInputLinks(Neuron n) -
Uses of Neuron in network.aika.neuron
Fields in network.aika.neuron declared as Neuron Modifier and Type Field Description static NeuronNeuron. MAX_NEURONstatic NeuronNeuron. MIN_NEURONMethods in network.aika.neuron that return Neuron Modifier and Type Method Description NeuronSynapse. getInput()NeuronSynapse. getOutput()static NeuronNeuron. init(Document doc, Neuron n, double bias, Collection<Neuron.Builder> inputs)static NeuronNeuron. init(Document doc, Neuron n, double bias, Collection<Synapse.Builder> synapseBuilders, Collection<Relation.Builder> relationBuilders)Initializes a neuron with the given bias.static NeuronNeuron. init(Document doc, Neuron n, double bias, Neuron.Builder... inputs)Creates a neuron with the given bias.static NeuronNeuron. init(Document doc, Neuron n, Neuron.Builder... inputs)static NeuronNeuron. init(Neuron n, double bias, Collection<Neuron.Builder> inputs)static NeuronNeuron. init(Neuron n, double bias, Collection<Synapse.Builder> synapseBuilders, Collection<Relation.Builder> relationBuilders)Initializes a neuron with the given bias.static NeuronNeuron. init(Neuron n, double bias, Neuron.Builder... inputs)Creates a neuron with the given bias.static NeuronNeuron. init(Neuron n, Neuron.Builder... inputs)Methods in network.aika.neuron with parameters of type Neuron Modifier and Type Method Description static SynapseSynapse. createOrReplace(Document doc, Integer synapseId, Neuron inputNeuron, Neuron outputNeuron, Synapse.SynapseFactory synapseFactory)SynapseSynapse.SynapseFactory. createSynapse(Neuron input, Neuron output, Integer id)SynapseSynapse.Builder. getSynapse(Neuron outputNeuron)static NeuronNeuron. init(Document doc, Neuron n, double bias, Collection<Neuron.Builder> inputs)static NeuronNeuron. init(Document doc, Neuron n, double bias, Collection<Synapse.Builder> synapseBuilders, Collection<Relation.Builder> relationBuilders)Initializes a neuron with the given bias.static NeuronNeuron. init(Document doc, Neuron n, double bias, Neuron.Builder... inputs)Creates a neuron with the given bias.static NeuronNeuron. init(Document doc, Neuron n, Neuron.Builder... inputs)static NeuronNeuron. init(Neuron n, double bias, Collection<Neuron.Builder> inputs)static NeuronNeuron. init(Neuron n, double bias, Collection<Synapse.Builder> synapseBuilders, Collection<Relation.Builder> relationBuilders)Initializes a neuron with the given bias.static NeuronNeuron. init(Neuron n, double bias, Neuron.Builder... inputs)Creates a neuron with the given bias.static NeuronNeuron. init(Neuron n, Neuron.Builder... inputs)voidNeuron.Builder. registerSynapseIds(Neuron n)voidSynapse.Builder. registerSynapseIds(Neuron n)SynapseNeuron. selectInputSynapse(Neuron inputNeuron, Predicate<Synapse> filter)Synapse.BuilderSynapse.Builder. setNeuron(Neuron neuron)Determines the input neuron.Constructors in network.aika.neuron with parameters of type Neuron Constructor Description INeuron(Neuron p)Synapse(Neuron input, Neuron output, Integer id) -
Uses of Neuron in network.aika.neuron.activation
Methods in network.aika.neuron.activation that return Neuron Modifier and Type Method Description NeuronActivation. getNeuron() -
Uses of Neuron in network.aika.neuron.relation
Methods in network.aika.neuron.relation with parameters of type Neuron Modifier and Type Method Description static voidRelation. addRelation(Integer synId, Integer targetSynId, Neuron n, Relation rel)static voidRelation. addRelation(Map<Integer,Relation> relMap, Integer synId, Integer targetSynId, Neuron n, Relation r)voidRelation.Builder. connect(Neuron n)static Map<Integer,Relation>Relation. getRelationsMap(int synapseId, Neuron n)voidRelation. link(Neuron n, int from, int to)voidRelation.Builder. registerSynapseIds(Neuron n)static voidRelation. removeRelation(Integer synId, Integer targetSynId, Neuron n, Relation r)
-