Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶ added in v0.2.5
type Config struct {
FirstShots int
HotShotBoost float64
TrainingSplit float64
MinimumDataPoints int
MinEpochs int
MaxEpochs int
MinLearningSpeed float64
MaxLearningSpeed float64
InitialFMeasure float64
MaxInitLoops int
RegressionThreshold float64
}
Config has all the learning configurations necessary to learn the network online
func DefaultConfig ¶ added in v0.2.5
func DefaultConfig() *Config
DefaultConfig returns the default config for the online learner
type Online ¶
type Online struct {
NetworkInput int
NetworkLayer []int
NetworkOutput int
Data *learn.Set
Network *net.Network
LastEvaluation *evaluation.Evaluation
Verbose bool
Usage net.NetworkType
AddedPoints int
Config *Config
}
Online contains every necessary for starting the engine
func (*Online) GetConfig ¶ added in v0.2.5
GetConfig returns the current online learner configuration
func (*Online) SetConfig ¶ added in v0.2.5
SetConfig sets a new config from outside for the online learner
func (*Online) SetVerbose ¶
SetVerbose sets the verbose version meaning debug and evaluation logs
Click to show internal directories.
Click to hide internal directories.