Versions in this module Expand all Collapse all v0 v0.2.5 Jun 6, 2021 Changes in this version + type Config struct + FirstShots int + HotShotBoost float64 + InitialFMeasure float64 + MaxEpochs int + MaxInitLoops int + MaxLearningSpeed float64 + MinEpochs int + MinLearningSpeed float64 + MinimumDataPoints int + RegressionThreshold float64 + TrainingSplit float64 + func DefaultConfig() *Config type Online + Config *Config + func (o *Online) GetConfig() *Config + func (o *Online) SetConfig(cfg *Config) v0.1.1 May 9, 2021 Changes in this version + type Online struct + AddedPoints int + Data *learn.Set + LastEvaluation *evaluation.Evaluation + Network *neural.Network + NetworkInput int + NetworkLayer []int + NetworkOutput int + RegressionThreshold float64 + Usage neural.NetworkType + Verbose bool + func NewOnline(usage neural.NetworkType, inputs int, hiddenLayer []int, data *learn.Set) *Online + func (o *Online) Init() float64 + func (o *Online) Inject(sample *learn.Sample, force bool) error + func (o *Online) Iterate() float64 + func (o *Online) SetVerbose(verbose bool)