machinelearning icon indicating copy to clipboard operation
machinelearning copied to clipboard

ML.NET is an open source and cross-platform machine learning framework for .NET.

Results 459 machinelearning issues
Sort by recently updated
recently updated
newest added

I'm trying to use LightGBM algorithm in ML.NET to train a model using a dataset. The dataset has a number of categorical features such as "gender", "race", "country_of_birth". I can...

enhancement
untriaged

**System Information (please complete the following information):** - OS & Version: Windows 11 - ML.NET Version: 3.01 - .NET Version: .NET 8.0 **Describe the bug** Accessing data by column after...

untriaged

I hope someone here can help me with this.. I'm exploring the possibilities of data analysis using c# and see a lot of samples where you generate html from your...

untriaged

`ITransformer trainedModel = trainingPipeline.Fit(trainingData);` How to obtain progress when the time is particularly long? I see many answers are before 2020. Is it currently supported in version 3.0.1? Or other...

enhancement
untriaged

Fixes #7107 as was asked in https://github.com/dotnet/machinelearning/issues/6144#issuecomment-2018430389 Additionaly: 1) Fix incorrect IsNumeric method 2) Fix error FillNulls crashes with NotImplemented exception on DataFrame with VBufferDataFrameColumn 3) Improve speed and redesign...

community-contribution

This is the 2nd most popular model on Kaggle. Thanks.

enhancement
P2

Is there, or will there be a way to use ML.net for object instance segmentation in an image? Or do I have to use tensorflow wrapper directly for that?

enhancement
P2

Test to reproduce: ```cs public void TestApplyMethod() { PrimitiveDataFrameColumn column = new PrimitiveDataFrameColumn("Byte1", int.MaxValue / 2 - 1); PrimitiveDataFrameColumn newColumn = column.Apply(x => (double?)x); } ``` Root cause is in...

Microsoft.Data.Analysis
untriaged