Uses of Class
com.github.raimannma.architecture.Network
Package | Description |
---|---|
com.github.raimannma.architecture | |
com.github.raimannma.methods |
-
Uses of Network in com.github.raimannma.architecture
Methods in com.github.raimannma.architecture that return Network Modifier and Type Method Description Network
Network. copy()
Copies a network.static @NotNull Network
Network. crossover(@NotNull Network network1, @NotNull Network network2, boolean equal)
Create an offspring from two parent networks.static @NotNull Network
Network. fromJSON(@NotNull com.google.gson.JsonObject json)
Convert a json object to a networkNetwork
EvolveOptions. getTemplate()
Gets template.Methods in com.github.raimannma.architecture that return types with arguments of type Network Modifier and Type Method Description ToDoubleFunction<Network>
EvolveOptions. getFitnessFunction()
Gets fitness function.Methods in com.github.raimannma.architecture with parameters of type Network Modifier and Type Method Description static @NotNull Network
Network. crossover(@NotNull Network network1, @NotNull Network network2, boolean equal)
Create an offspring from two parent networks.EvolveOptions
EvolveOptions. setTemplate(Network template)
Sets template.Method parameters in com.github.raimannma.architecture with type arguments of type Network Modifier and Type Method Description EvolveOptions
EvolveOptions. setFitnessFunction(ToDoubleFunction<Network> fitnessFunction)
Sets fitness function. -
Uses of Network in com.github.raimannma.methods
Methods in com.github.raimannma.methods that return Network Modifier and Type Method Description Network
Selection.FitnessProportionate. select(@NotNull List<Network> population)
Network
Selection.Power. select(@NotNull List<Network> population)
abstract Network
Selection. select(List<Network> population)
Select a genome from the population by applying a selection method.Network
Selection.Tournament. select(@NotNull List<Network> population)
Methods in com.github.raimannma.methods with parameters of type Network Modifier and Type Method Description abstract void
Mutation. mutate(Network network)
Mutate a network with the enum method.Method parameters in com.github.raimannma.methods with type arguments of type Network Modifier and Type Method Description Network
Selection.FitnessProportionate. select(@NotNull List<Network> population)
Network
Selection.Power. select(@NotNull List<Network> population)
abstract Network
Selection. select(List<Network> population)
Select a genome from the population by applying a selection method.Network
Selection.Tournament. select(@NotNull List<Network> population)