Uses of Interface
org.encog.ml.CalculateScore

Packages that use CalculateScore
org.encog.ml.ea.score   
org.encog.ml.ea.score.parallel   
org.encog.ml.ea.train   
org.encog.ml.ea.train.basic   
org.encog.ml.fitness   
org.encog.ml.genetic   
org.encog.ml.prg.generator   
org.encog.ml.prg.train   
org.encog.neural.neat   
org.encog.neural.networks.training   
org.encog.neural.networks.training.anneal   
org.encog.neural.networks.training.pso   
 

Uses of CalculateScore in org.encog.ml.ea.score
 

Classes in org.encog.ml.ea.score that implement CalculateScore
 class EmptyScoreFunction
          An empty score function.
 

Uses of CalculateScore in org.encog.ml.ea.score.parallel
 

Methods in org.encog.ml.ea.score.parallel that return CalculateScore
 CalculateScore ParallelScore.getScoreFunction()
           
 

Constructors in org.encog.ml.ea.score.parallel with parameters of type CalculateScore
ParallelScore(Population thePopulation, GeneticCODEC theCODEC, List<AdjustScore> theAdjusters, CalculateScore theScoreFunction, int theThreadCount)
          Construct the parallel score calculation object.
 

Uses of CalculateScore in org.encog.ml.ea.train
 

Methods in org.encog.ml.ea.train that return CalculateScore
 CalculateScore EvolutionaryAlgorithm.getScoreFunction()
           
 

Uses of CalculateScore in org.encog.ml.ea.train.basic
 

Methods in org.encog.ml.ea.train.basic that return CalculateScore
 CalculateScore BasicEA.getScoreFunction()
          
 

Constructors in org.encog.ml.ea.train.basic with parameters of type CalculateScore
BasicEA(Population thePopulation, CalculateScore theScoreFunction)
          Construct an EA.
TrainEA(Population thePopulation, CalculateScore theScoreFunction)
          Create a trainer for a score function.
 

Uses of CalculateScore in org.encog.ml.fitness
 

Classes in org.encog.ml.fitness that implement CalculateScore
 class MultiObjectiveFitness
          A multi-objective fitness function.
 

Methods in org.encog.ml.fitness that return CalculateScore
 CalculateScore FitnessObjective.getScore()
           
 

Methods in org.encog.ml.fitness with parameters of type CalculateScore
 void MultiObjectiveFitness.addObjective(double weight, CalculateScore fitnessFunction)
          Add an objective.
 

Constructors in org.encog.ml.fitness with parameters of type CalculateScore
FitnessObjective(double weight, CalculateScore score)
          Construct the fitness objective.
 

Uses of CalculateScore in org.encog.ml.genetic
 

Constructors in org.encog.ml.genetic with parameters of type CalculateScore
MLMethodGeneticAlgorithm.MLMethodGeneticAlgorithmHelper(Population thePopulation, CalculateScore theScoreFunction)
          Construct the helper.
MLMethodGeneticAlgorithm(MethodFactory phenotypeFactory, CalculateScore calculateScore, int populationSize)
          Construct a method genetic algorithm.
 

Uses of CalculateScore in org.encog.ml.prg.generator
 

Methods in org.encog.ml.prg.generator that return CalculateScore
 CalculateScore AbstractPrgGenerator.getScore()
           
 

Methods in org.encog.ml.prg.generator with parameters of type CalculateScore
 void AbstractPrgGenerator.setScore(CalculateScore score)
           
 

Uses of CalculateScore in org.encog.ml.prg.train
 

Classes in org.encog.ml.prg.train that implement CalculateScore
 class ZeroEvalScoreFunction
          This is a very simple evaluation function that simply passes in all zeros for the input arguments.
 

Uses of CalculateScore in org.encog.neural.neat
 

Methods in org.encog.neural.neat with parameters of type CalculateScore
static TrainEA NEATUtil.constructNEATTrainer(CalculateScore calculateScore, int inputCount, int outputCount, int populationSize)
           
static TrainEA NEATUtil.constructNEATTrainer(NEATPopulation population, CalculateScore calculateScore)
          Construct a NEAT (or HyperNEAT trainer.
 

Uses of CalculateScore in org.encog.neural.networks.training
 

Classes in org.encog.neural.networks.training that implement CalculateScore
 class TrainingSetScore
          Calculate a score based on a training set.
 

Uses of CalculateScore in org.encog.neural.networks.training.anneal
 

Methods in org.encog.neural.networks.training.anneal that return CalculateScore
 CalculateScore NeuralSimulatedAnnealing.getCalculateScore()
           
 

Constructors in org.encog.neural.networks.training.anneal with parameters of type CalculateScore
NeuralSimulatedAnnealing(MLEncodable network, CalculateScore calculateScore, double startTemp, double stopTemp, int cycles)
          Construct a simulated annleaing trainer for a encodable MLMethod.
 

Uses of CalculateScore in org.encog.neural.networks.training.pso
 

Fields in org.encog.neural.networks.training.pso declared as CalculateScore
protected  CalculateScore NeuralPSO.m_calculateScore
           
 

Constructors in org.encog.neural.networks.training.pso with parameters of type CalculateScore
NeuralPSO(BasicNetwork network, Randomizer randomizer, CalculateScore calculateScore, int populationSize)
          Constructor.
 



Copyright © 2014. All Rights Reserved.