MCPcopy Create free account
hub / github.com/CodingBeard/tfkg / ValuesDataset

Struct ValuesDataset

data/values_dataset.go:17–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15)
16
17type ValuesDataset struct {
18 ClassCounts map[int]int
19 ClassWeights map[int]float32
20 Count int
21
22 shuffled bool
23 generatorOffset int
24 cacheDir string
25 yProcessor *preprocessor.Processor
26 isCategorical bool
27 columnProcessors []*preprocessor.Processor
28 trainPercent float32
29 valPercent float32
30 testPercent float32
31 trainCount int
32 valCount int
33 testCount int
34 mode GeneratorMode
35 offsets []int
36 offset int
37 limit int
38 xValues [][]interface{}
39 yValues []interface{}
40
41 logger *cblog.Logger
42 errorHandler *cberrors.ErrorsContainer
43}
44
45type ValuesDatasetConfig struct {
46 CacheDir string

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected