scikit-learn.net icon indicating copy to clipboard operation
scikit-learn.net copied to clipboard

Machine Learning in .NET Core.

Results 3 scikit-learn.net issues
Sort by recently updated
recently updated
newest added

my code: double[] input = { 0.1, 1.5, 2.2, 0.4, -0.3 }; var data = NumpyArrayFactory.From(input); var scaler = new MinimumMaximumScaler(); var output = scaler.Transform(data); // says: "Object reference not...

Split arrays or matrices into random train and test subsets https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.train_test_split.html

Convert a collection of raw documents to a matrix of TF-IDF features. https://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.TfidfVectorizer.html

enhancement