Versions in this module Expand all Collapse all v1 v1.0.3 Feb 13, 2024 v1.0.1 Feb 7, 2024 Changes in this version + func LoadExamScore() (X, Y *mat.Dense) + func LoadInternationalAirlinesPassengers() (Y *mat.Dense) + func LoadMicroChipTest() (X, Y *mat.Dense) + func LoadMnist() (X, Y *mat.Dense) + func LoadMnistWeights() (Theta1, Theta2 *mat.Dense) + func LoadOctaveBin(filename string) map[string]*mat.Dense + func MakeBlobs(config *MakeBlobsConfig) (X, Y *mat.Dense) + func MakeRegression(kwargs map[string]interface{}) (X, y, Coef *mat.Dense) + type MLDataset struct + DESCR string + Data [][]float64 + FeatureNames []string + Target []float64 + TargetNames []string + X *mat.Dense + Y *mat.Dense + func LoadBoston() (ds *MLDataset) + func LoadBreastCancer() (ds *MLDataset) + func LoadDiabetes() (ds *MLDataset) + func LoadIris() (ds *MLDataset) + func LoadWine() (ds *MLDataset) + func (ds *MLDataset) GetXY() (X, Y *mat.Dense) + type MakeBlobsConfig struct + CenterBox []float64 + Centers interface{} + ClusterStd float64 + NFeatures int + NSamples int + RandomState base.RandomState + Shuffle bool