ml.net Questions
4
I created a new console application .net46, install the latest ML and tried a simple LDA.
Got the error above. None of the fix that I found on the web seems to work. It is looking for a 4.1.3.0 ver...
Prototrophic asked 20/4, 2020 at 13:45
10
I have a .NET Core 3 app for image classification, using Microsoft's ML.NET framework.
On my development machine, I can run the code and it all works fine.
However, when I deploy it to my staging...
Maimaia asked 24/10, 2019 at 21:51
5
Solved
With ML.Net I am using a classifier for text interpretation. The prediction has a score column as float[] and a predicted label. This works in that the highest score relates to the predicted label,...
Molding asked 1/10, 2018 at 21:13
2
I am using ML.NET to import an ONNX model to do object detection. For the record, I exported the model from the CustomVision.ai site from Microsoft.
I inspected the model file in Netron and it cle...
1
We have a scenario where we need to use Machine learning algorithm to predict a value. We want to do it in ML.NET because of some issues.
We tried AutoML in a project and trained it with almost 80k...
Mussel asked 4/3, 2021 at 19:37
1
Solved
I have a TensorFlow model that I built (a 1D CNN) that I would now like to implement into .NET.
In order to do so I need to know the Input and Output nodes.
When I uploaded the model on Netron I ge...
Shool asked 11/11, 2020 at 21:28
2
Solved
I have a Neural Network implemented in Python with Keras. Once I have trained it I have exported the model and I have got two files: model.js and model.h5. Now I want to classify in real time insid...
Gag asked 30/4, 2019 at 14:38
1
Does Microsoft.ML work in Xamarin?
I have followed many of the tutorials and videos at https://dotnet.microsoft.com/learn/ml-dotnet.
The simple tutorial (here) sets out the core process, which I ha...
Bulgar asked 27/7, 2020 at 12:48
2
Solved
I'm using ML.NET 0.7 and have a MulticlassClassification model with the following result class:
public class TestClassOut
{
public string Id { get; set; }
public float[] Score { get; set; }
pub...
1
Solved
I'm using ML.NET to predict a series of values using a regression model. I am only interested in one column being predicted (the score column). However, the values of some of the other columns are ...
Introrse asked 13/10, 2019 at 21:2
0
I am pretty new to machine learning in general, and to Microsoft ML.NET in particular.
What I am trying to do is to create a re-trainable model for text classification.
Suppose I have an Article (f...
Wrapped asked 6/10, 2019 at 14:29
1
Solved
I'm using ML.NET in an ASP.NET Core application, and I am using the following code in Startup:
var builder = services.AddPredictionEnginePool<Foo, Bar>();
if (File.Exists("model.zip"))
{
b...
Mineraloid asked 27/8, 2019 at 21:18
2
I am training a ML.Net machine learning model. I can train it and predict from it, and save/load it from the disk. But I need to be able to load it off the disk, then retrain it, or add to it with ...
Bearish asked 23/9, 2018 at 22:28
1
Solved
I am new to Machine Learning. I came across ML.NET (Machine Learning framework by Microsoft). Can we use this framework for speech recognition? What all things you should know if you want to do a s...
Guffaw asked 25/2, 2019 at 7:11
1
I'm very new to machine learning and I've stumbled upon the following problem. Considering an official NYC Taxi fare amount prediction tutorial, let's say I'd like to predict another real value, e....
Galiot asked 14/2, 2019 at 13:29
1
Here is the creation of the ML.Net pipeline object copied from the TaxiFarePrediction example.
LearningPipeline pipeline = new LearningPipeline
{
new TextLoader(TrainDataPath).CreateFrom<Tax...
Hirsch asked 21/9, 2018 at 17:57
1
Solved
I want to make my first app in ML.NET. I bet on Wisconsin Prognostic Breast Cancer Dataset. I generete .csv file by myself. One record of that file looks like this:
B;11.62;18.18;76.38;408.8;0.117...
0
I'm trying out the ML.net framework with some random test data. My data exists of a DepartmentId (1-25) and a Body (string). I want my machine to predict the department that the body should be allo...
Winch asked 17/7, 2018 at 7:53
1
Solved
I am new to VS code/F# and I am trying to build a F# console app (on both Windows workstation and on my Linux computer).
I installed the Ionide extension together with FAKE.
The code I am conside...
Jeffryjeffy asked 21/6, 2018 at 8:26
1
Solved
I am new to F#/.NET and I am trying to run the F# example provided in the accepted answer of How to translate the intro ML.Net demo to F#? with the ML.NET library, using F# on Visual Studio, using ...
3
Solved
I'm looking at a the cs file here: https://www.microsoft.com/net/learn/apps/machine-learning-and-ai/ml-dotnet/get-started/windows and everything works well.
Now I'd like to improve the example: I'...
Chickabiddy asked 23/5, 2018 at 21:16
1
Solved
I'm looking at a the cs file here:
https://www.microsoft.com/net/learn/apps/machine-learning-and-ai/ml-dotnet/get-started/windows
and in my attempt to translate it to F# it compiles just fine but t...
1
© 2022 - 2024 — McMap. All rights reserved.