Questions tagged [ml.net]

ML.NET is a machine learning framework built for .NET developers. Uses .NET and C# or F# to easily integrate custom machine learning into applications without the requirement of extensive prior expertise in developing or tuning machine learning models. Use this tag for discussion about the framework or apps built within.

Get started at dot.net/ml

Get involved at github.com/dotnet/machinelearning

View samples at github.com/dotnet/machinelearning-samples

455 questions
0
votes
1 answer

How to predict/score XGBoost or LightGBM in .NET Framework 4.6.1 application

I have a machine learning problem where I have obtained very good results on training/test data using both LightGBM and XGBoost. The next step is to obtain predictions from one of these models into an existing C# application (.NET Framework 4.6.1)…
Petter T
  • 2,619
  • 2
  • 12
  • 28
0
votes
1 answer

Microsoft.ML --version 0.3.0 -- Unable to Get started with ML.NET in 10 minutes

I have follow the steps provide in (https://www.microsoft.com/net/learn/apps/machine-learning-and-ai/ml-dotnet/get-started/windows) to get started with ML.NET in 10 minutes. But on running the app. Console is through below runtime error. Unhandled…
ideepak04
  • 36
  • 3
0
votes
1 answer

Structure of a binary tree

What i am trying to do: I want to display a tree. What i have done: I used ML.net to train a Decision Tree Model using the random forrest algorithm. The random forrest algorithm results in multiple regression trees, which i want to display. When i…
Sebastian L
  • 818
  • 9
  • 27
0
votes
1 answer

ML.Net fails to load a model from storage in MVC project

I have been playing around with ML.Net and wanted to integrate it in an ASP.NET MVC project. I have a console app that is responsible for training the model and then saving it to a folder on the server which the MVC project will then load it and…
MrCSharp
  • 1,092
  • 15
  • 24
-1
votes
0 answers

Multiclass Classification for time series in ML.Net

is it possible in Ml.Net make Multiclass Classification for time series?
-1
votes
1 answer

ML.NET Classification Many to Many

I need to use ML.NET to process large blocks of text and determine if any given block of text will potentially fall into some of many different categories. I currently have multiple boolean columns which I want to flag to true when matches are found…
chrisg229
  • 847
  • 2
  • 7
  • 19
-1
votes
1 answer

How to use Machine Learning/Vision functions to find frames in a scan of film strip?

I have recently taken up film photography. Part of the workflow is to scan the images using a flatbed scanner. Unfortunately this process is very slow. Using some software (Silverfast) you make a prescan, zoom in make a more detailed pre scan, click…
DarcyThomas
  • 958
  • 11
  • 28
-1
votes
1 answer

ML.Net object detection and bounding boxes

I have created an image classification model using the Microsoft model builder. Now I need to use that model to detect objects in a video stream and draw bounding boxes once the object is detected. I can not find a c# sample that uses the generated…
-1
votes
1 answer

Transforming data on the same line while making a prediction engine on ml.net

While transforming one bit of data the line var dataProcessPipeline = mlcontext.Transforms.Categorical.OneHotEncoding(outputColumnName: "PredGoalsCoded", "PredGoals")..... but i couldn't find how to do multiple transformations on the same line so…
J-school
  • 19
  • 7
-1
votes
1 answer

Using Ml.net package error "System.ArgumentOutOfRangeException"

While using ML.net package the error "System.ArgumentOutOfRangeException: 'Schema mismatch for feature column 'Features': expected Vector, got Vector Parameter name: inputSchema'" was thrown on the line "var model =…
J-school
  • 19
  • 7
-1
votes
1 answer

ML.NET and Many to many relation

I want to use ML.Net Multi-class classification in my current project that collects error logs from one my company systems. Point is to add tags to errors and one point in the future train a model to predict and assign tags to incoming logs. I'm…
-1
votes
1 answer

Is it possible to do one-class classification with Microsoft ML.NET?

Is it possible to do one-class classification (wiki) with Microsoft ML.NET? I.e. in the training data set there is only one (the positive) class and I would like to tell if some test data belongs to this class or not. Can this be accomplished wiht…
ripe_bananas
  • 820
  • 8
  • 11
-1
votes
1 answer

How to use String as a Predicted Column

Goal: Make a prediction on PaymentType. The target name or predicted column is a string value. Problem: I retrieve a error message that is "ArgumentOutOfRangeException: Training label column 'Label' type isn't suitable for regression: Text. Type…
What'sUP
  • 12,102
  • 23
  • 71
  • 120
-1
votes
2 answers

Is it possible to find and count all 'cats' on a big image?

Can anybody help me with the right direction to complete my task? Problem: I have a big image with for example 10 cats and 5 dogs, how can detect and count all of these cats in an image? For the now my network that written on ML.NET can only…
-1
votes
2 answers

How to pass dynamic classes to a generic function?

I want to make a machine learning api for use with a web application, the field names will be passed to the api with their data types. Currently I am making a class at runtime with the code provided in this answer:…
Paprika
  • 77
  • 1
  • 9
1 2 3
30
31