public static interface BOSSLearningAlgorithm.IBossAlgorithmConfig
extends ai.libs.jaicore.basic.algorithm.IAlgorithmConfig
org.aeonbits.owner.Config.ConverterClass, org.aeonbits.owner.Config.DecryptorClass, org.aeonbits.owner.Config.DefaultValue, org.aeonbits.owner.Config.DisableableFeature, org.aeonbits.owner.Config.DisableFeature, org.aeonbits.owner.Config.EncryptedValue, org.aeonbits.owner.Config.HotReload, org.aeonbits.owner.Config.HotReloadType, org.aeonbits.owner.Config.Key, org.aeonbits.owner.Config.LoadPolicy, org.aeonbits.owner.Config.LoadType, org.aeonbits.owner.Config.PreprocessorClasses, org.aeonbits.owner.Config.Separator, org.aeonbits.owner.Config.Sources, org.aeonbits.owner.Config.TokenizerClass| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
K_ALPHABET |
static java.lang.String |
K_ALPHABET_SIZE |
static java.lang.String |
K_MEANCORRECTED |
static java.lang.String |
K_WINDOW_SIZE |
static java.lang.String |
K_WORDLENGTH |
| Modifier and Type | Method and Description |
|---|---|
double[] |
alphabet()
The alphabet consists of doubles representing letters and defines each word.
|
int |
alphabetSize()
The alphabet size determines the number of Bins for the SFA Histograms.
|
boolean |
meanCorrected()
If mean corrected is set to true than the first DFT coefficient is dropped to normalize the mean.
|
int |
windowSize()
The size of the sliding window that is used over each instance and splits it into multiple
smaller instances.
|
int |
wordLength()
The word length determines the number of used DFT-coefficients.
|
cpus, memory, threads, timeoutstatic final java.lang.String K_WINDOW_SIZE
static final java.lang.String K_ALPHABET_SIZE
static final java.lang.String K_ALPHABET
static final java.lang.String K_WORDLENGTH
static final java.lang.String K_MEANCORRECTED
@Config.Key(value="boss.windowsize") int windowSize()
@Config.Key(value="boss.alphabetsize") @Config.DefaultValue(value="4") int alphabetSize()
@Config.Key(value="boss.alphabet") double[] alphabet()
@Config.Key(value="boss.wordlength") int wordLength()
@Config.Key(value="boss.meancorrected") boolean meanCorrected()