machinelearning
machinelearning copied to clipboard
ML.NET is an open source and cross-platform machine learning framework for .NET.
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...
**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...
Fixes #7102
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...
`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...
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...
This is the 2nd most popular model on Kaggle. Thanks.
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?
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...