neet-0.3.1.0: A NEAT library for Haskell

Copyright(c) Leon Medvinsky, 2015
LicenseGPL-3
Maintainerlmedvinsky@hotmail.com
Stabilityexperimental
Portabilityghc
Safe HaskellSafe-Inferred
LanguageHaskell2010

Neet.Training

Description

 

Synopsis

Documentation

data Training candidate score result Source

Training structure. The idea is that if it is StillTraining, it is presenting you with something that must have its score evaluated, and a way to advance the training by providing that score. If it is DoneTraining, everything has been iterated through.

Constructors

StillTraining candidate (score -> Training candidate score result) 
DoneTraining result 

Instances

Functor (Training candidate score) 
Applicative (Training candidate score) 
(Show c, Show r) => Show (Training c s r) 

trainTraversable :: Traversable t => t a -> Training a b (t b) Source