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 NetworkNetwork. copy()Copies a network.static @NotNull NetworkNetwork. crossover(@NotNull Network network1, @NotNull Network network2, boolean equal)Create an offspring from two parent networks.static @NotNull NetworkNetwork. fromJSON(@NotNull com.google.gson.JsonObject json)Convert a json object to a networkNetworkEvolveOptions. 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 NetworkNetwork. crossover(@NotNull Network network1, @NotNull Network network2, boolean equal)Create an offspring from two parent networks.EvolveOptionsEvolveOptions. setTemplate(Network template)Sets template.Method parameters in com.github.raimannma.architecture with type arguments of type Network Modifier and Type Method Description EvolveOptionsEvolveOptions. 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 NetworkSelection.FitnessProportionate. select(@NotNull List<Network> population)NetworkSelection.Power. select(@NotNull List<Network> population)abstract NetworkSelection. select(List<Network> population)Select a genome from the population by applying a selection method.NetworkSelection.Tournament. select(@NotNull List<Network> population)Methods in com.github.raimannma.methods with parameters of type Network Modifier and Type Method Description abstract voidMutation. 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 NetworkSelection.FitnessProportionate. select(@NotNull List<Network> population)NetworkSelection.Power. select(@NotNull List<Network> population)abstract NetworkSelection. select(List<Network> population)Select a genome from the population by applying a selection method.NetworkSelection.Tournament. select(@NotNull List<Network> population)