Questions tagged [ml.net-model-builder]
52 questions
0
votes
1 answer
ML.NET Model Builder generated code to return multiple prediction results
I selected Text Classification in Model Builder and was able to evaluate the model with sample data. I get multiple results rows with percent accuracy in Visual Studio plugin like below:
Results
Result1 60%
Result2 5%
Result3 …

pymendoza
- 348
- 3
- 16
0
votes
0 answers
ML.NET Model Builder with too many labels
I have a training set of 12k samples. Each sample is a result for my model.
For instance, i have 2 features and a label (f1 is a category and f2 a text):
F1,F2,LABEL
ALPHA, 114, ALPHA_114
ALPHA, 125, ALPHA_125
BETA, 213, BETA_213
I would match…

Daniele Licitra
- 1,520
- 21
- 45
0
votes
1 answer
ML.NET Image Classification Training Freezing
I'm using the latest version of ML.NET image classification in Visual Studio 2019 on a Windows 10 PC to detect inappropriate images. I was using a dataset of 3000 SFW and 3000 NSFW images to train it, but it got stuck while training. There are no…

230Daniel
- 432
- 3
- 16
0
votes
2 answers
ML.Net Data.SaveAsText CSV file cannot be loaded by Model Builder
I export my current ML.Net Data to a CSV with this function
using (var stream = File.Create("c:\\temp\\aidata.csv"))
mlContext.Data.SaveAsText(trainData, stream);
The saved data looks ok, but when I try to load the CSV with…

Mario
- 13,941
- 20
- 54
- 110
-1
votes
0 answers
ML.NET filePath cannot be null or empty
For an image differentiating machine learning model, I am testing a scenario where I have 4800 images. after I add the data image previews and categories are recognized correctly.
when the training starts however, after some time I receive a…

Helios Lucifer
- 25
- 7
-1
votes
0 answers
How to get multiple output labels in Ml.net
I'm new to ML.Net and I've tried some basics from the ML.net tutorials. Now, I want to integrate it into my application.
Here's a sample dataset I have:
Description,Actions
Added new file and add that user to a folder | Create file, Add folder…

randomArtist
- 1
- 2
-1
votes
1 answer
Can the python shap package be used with MLNET models (or models that are not sklearn)?
Every example I've found using the Shap package demonstrates with models from sklearn. How would I extend this to an ML.Net model? Do I just need a score file, ground truth file and prediction file?
I've checked this documentation:…

Lee
- 49
- 5