| 15 | ) |
| 16 | |
| 17 | type 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 | |
| 45 | type ValuesDatasetConfig struct { |
| 46 | CacheDir string |
nothing calls this directly
no outgoing calls
no test coverage detected