Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
0 replies
22 views

Say I am given some text (could be an email subject but could be anything really). Then I want to categorise that with as many labels as it is trained with. Say "I want help with my computer"...
coolblue2000's user avatar
  • 5,176
Advice
0 votes
1 replies
26 views

I have a number of book summaries in a database and I want to recommend say 10 books given a inputted text of what a user likes in a book. Does anyone know of any good examples of doing this ...
coolblue2000's user avatar
  • 5,176
2 votes
0 answers
174 views

I am having trouble using onnxruntime.dll in ML.NET. My code works on one PC but not another. Clearly there is a mismatch between versions of some native DLLs, but I can't figure it out. The error is:...
Alex Gdalevich's user avatar
1 vote
1 answer
66 views

I’m trying to run a ML.NET application in a Docker container with Node-RED, but I’m receiving the following error: Unhandled exception. System.IO.FileNotFoundException: Could not find file '/usr/src/...
user30427748's user avatar
1 vote
0 answers
49 views

We currently have a trained ResnetV250 image classification model that performs as expected on CPU and with GPU support on Turing based cards with CUDA 10.1 and cudnn 7.6.4. When transferring this to ...
Ross Halliday's user avatar
1 vote
2 answers
169 views

I'm using version 3.0.1 of the Microsoft.ML library in my C# WinForms object detection program. When I add a Machine Learning Model to my Visual Studio project, training it on the MLModel1.mbconfig ...
Ant's user avatar
  • 233
0 votes
1 answer
179 views

I have been trying to get an image segmentation model from huggingface (RMBG-2.0) to work for inference using ML.NET. After a lot of trial and error, I finally got the code to compile and produce an ...
alepee's user avatar
  • 1
0 votes
1 answer
132 views

I've a super strange error "fail to install runtime" when I'm starting to train my ML.NET model and I'm using Ml.NET Model Builder. Of course I tried to reisntall Visual Studio, twice, and ...
dekma_d's user avatar
0 votes
1 answer
90 views

I have built an ML.net model using the Visual Studio Model Builder and all is well. I have tested it locally and it works. I now have the zip file (actually now a .mlnet file) and I want to deploy the ...
Age of Empires's user avatar
3 votes
1 answer
137 views

I'm working on an ML.NET project where I load data into an IDataView, apply an ONNX model transformation, and then access the transformed output. My Input class is in the same assembly as my Output ...
FluidMechanics Potential Flows's user avatar
1 vote
0 answers
113 views

I am trying to use CenterFace ONNX in ML.NET and I keep getting various errors, mostly about input size. CenterFace metadata points that it should have an input of 10, 3, 32, 32, which already makes ...
ervin's user avatar
  • 555
0 votes
1 answer
63 views

At my wits end... T5.omnx - ML.Net implementation trying to get down into text summarization... Have this text harness - guts of which are below - the harnes is simple proof of component usability... ...
Bob Logan's user avatar
1 vote
2 answers
249 views

New to ML.Net. Have created a model directly in my API and want to create a Pool using the AddPredictionEnginePool so I can multithread the predictions. However all the documentation says there is a ....
Age of Empires's user avatar
0 votes
1 answer
621 views

I'm attempting to use ML.NET to build a model for a simple text classification, but using the CPU rather than GPU due to lacking one with CUDA. However, trying to execute my current code results in ...
Thomas Coleman's user avatar
0 votes
0 answers
83 views

My input and Output Models public class MLInput { public float[] Inputs { get; set; } // Handles any number of tags public float Value { get; set; } // Target value } public class ...
Srinivas Ch's user avatar
  • 1,256
0 votes
1 answer
163 views

I attempted to use DepthAnything V2 model to approximate depth from given images. using System.Drawing; using System.Text.Json; using Microsoft.ML; using Microsoft.ML.OnnxRuntime; using Microsoft.ML....
user21053170's user avatar
0 votes
1 answer
178 views

I'm getting the following exception: System.ArgumentOutOfRangeException: Could not determine an IDataView type and registered custom types for member ValueType (Parameter 'rawType') For those 2 cases:...
Eric Ouellet's user avatar
  • 12.1k
0 votes
1 answer
293 views

i want use ml.net and load onnx model in it. but i dont have any ApplyOnnxModel method in mlContext ... this is installed packaged <PackageReference Include="Microsoft.ML" Version=&...
abbas-h's user avatar
  • 450
1 vote
0 answers
82 views

I am new in ML .Net Forecasting. I am trying to build a simple application for Prediction. Time Series (step is 1 month, 1993-1995), Data = values incrementing with step 10 starting from 100. Then I ...
Nvm's user avatar
  • 11
1 vote
0 answers
56 views

I was trying to reproduce the example of ML.Net: machinelearning-samples/samples/csharp/getting-started/MLNET2/SentenceSimilarity and I got the following error : Fatal error. System....
CBal's user avatar
  • 41
1 vote
1 answer
504 views

I upgraded nuget packages from: <PackageReference Include="Microsoft.ML" Version="3.0.0-preview.23266.6" /> <PackageReference Include="Microsoft.ML.ImageAnalytics&...
Max Cat's user avatar
  • 31
0 votes
1 answer
108 views

I'm trying to predict using the Essentia discogs_track_embeddings-effnet-bs64 model with ML.NET. I've tried both using tensorflow and onnx, but when I try to predict anything I'm stuck with Exception ...
Epsilon Rho's user avatar
1 vote
2 answers
178 views

In an application for a law article, there is a list of strings with keywords. In the example it is assigned to the variable keywords. In my example there is an article with the title İşçilik ...
Johnny Wind's user avatar
0 votes
1 answer
105 views

I have input data as List<Dictionary<string,dynamic>> I want to load this data as Enumerable in MLContext var mlContext = new MLContext(); mlContext.Data.LoadFromEnumerable(inputData); I ...
Rahul's user avatar
  • 1
0 votes
0 answers
326 views

I know its been a while. I am using yolov5 with MAUI as well but in an ONNX form. I am having no trouble in getting the predictions but issue is with the bounding boxes they are way off. my model has ...
user5678's user avatar
0 votes
1 answer
1k views

We have an exported ONNX-model, built using Python and imported to a .NET Core 8 application. Everything works as expected on our local machines, Windows 11 and Windows 10. However, when deploying to ...
LordSilvermort's user avatar
0 votes
1 answer
140 views

I'm new to machine learning, but I have experience in C#, which is why I want to pick up Ml.net to familiarize myself with the topic. As I grasp the concept, I have decided to make a movie ...
Rihah's user avatar
  • 29
0 votes
1 answer
222 views

When using ML.NET to perform a Latent Dirichlet Allocation (LDA) on a sample set of documents I can get the prediction (correlation) between each document and the topics extracted but I cannot get the ...
user3786916's user avatar
1 vote
0 answers
228 views

In my project I want to use Ml.Net to train TorchSharp based NER model using GPU. So I installed required version of Nvidia CUDA: nvcc --version Cuda compilation tools, release 12.1, V12.1.66 Build ...
JackFord's user avatar
  • 143
0 votes
1 answer
137 views

What is the exact syntax for creating NN that process a generic input into a generic output? There are lot of tutorials on images but none tutorials covering my use case and no tutorials covering the ...
CoffeDeveloper's user avatar
0 votes
1 answer
111 views

I fail to understand the transform component. Basically I have generated 1 million training samples public class Data{ public float[] Input; public float[] Output; } I want to train a net with 100 ...
CoffeDeveloper's user avatar
0 votes
0 answers
111 views

I have a 60mb CSV with 700000 rows, IMO this is not a huge amount. My machine has 32 GB of memory and doesn't even use 20% of my memory when I watch performance. I tried to build a release build on ...
Harry's user avatar
  • 4,060
1 vote
0 answers
175 views

I'm using ML.NET for a value prediction application. Everything works, except I can't get it to use the LightGbm trainer algorithm. If I select all available trainers, it never tries LGBM. If I only ...
Lawrence's user avatar
0 votes
0 answers
201 views

Is there a more convenient way to apply two filters to a DataFrame in .net than this method? DataFrame origFrame = DataFrame.LoadCsv("sample.csv"); var filtered1 = origFrame.Filter(origFrame ...
Jan's user avatar
  • 4,364
0 votes
0 answers
294 views

I have a machine learning ml.net binary classification model, trained it, and evaluated it, giving me a CalibratedBinaryClassificationMetrics with a lot of metrics, but none helpful to me. I want to ...
stephenspcdmav's user avatar
1 vote
0 answers
124 views

We are using ML.NET to classify images. Every image should fall into one of more classes. The images contain different variants of products. The variants of the products have lots of similarities but ...
Markus S.'s user avatar
  • 2,812
0 votes
1 answer
1k views

I have an event grid triggered function on Azure under the Linux Consumption plan. The code requires finding / loading some local model files. How do I get these files deployed to the Azure function ...
HBCondo's user avatar
  • 929
0 votes
1 answer
314 views

I am working on a time series analysis project with ML.net. Here I try to forecast euro to usd transaction rate. I load the data from a CSV file and create IDataView with in memory data. List<...
Faisal Amin's user avatar
0 votes
1 answer
412 views

I want to use my frozen graph models(.pb) in ml.net (eg. ModelOperationsCatalog.LoadTensorflowModel) that i built in python and tensorflow. My several attempts causes errors when I tried to load .pb ...
uygur's user avatar
  • 11
3 votes
0 answers
609 views

I am using .NET Model Builder to use ML.NET Text Classification. And whenever I click train, later it gives me an error saying The JSON-RPC connection with the remote party was lost before the request ...
bluedra's user avatar
  • 139
1 vote
0 answers
57 views

I'm trying to do the code equivalent of: mlnet classification --dataset output.csv --label-col 0 --has-header true --name test --train-time 300 and here is the code: let data = ctx.Data....
Thomas's user avatar
  • 12.4k
-1 votes
1 answer
1k views

I have a CSV file with each row representing the different components of an address, such as City, Street, House No, etc., and then a column with a combined address in one line, with a predefined ...
Haris Munawar's user avatar
1 vote
1 answer
368 views

I´m using ml.net to build a model, but I can't figure out how to build a model from a complex object with a list of other objects, of varying length. Example code: public void Test() { List<...
OneBigQuestion's user avatar
1 vote
0 answers
127 views

I'm trying to implement an ML.Net system to predict prices and I'm getting a strange error when loading the stored model. This is my code for the training: private async Task TrainModel() { var ...
Luis Agudo's user avatar
1 vote
2 answers
877 views

I'm attempting to use NamedEntityRecognition (NER)(https://github.com/dotnet/machinelearning/issues/630) to predict categories for words/phrases within a large body of text. Currently using 3 Nuget ...
lahbton's user avatar
  • 11
0 votes
0 answers
54 views

Supported APIs Error Found: The supported APIs test detected the following errors: API K32EnumProcessModules in kernel32.dll is not supported for this application type. libiomp5md.dll calls this API. ...
UK_dev48's user avatar
1 vote
0 answers
157 views

I'm delving into machine learning and am currently experimenting with multiclass classification in ML.NET. Background: I have a dataset containing financial data and I aim to infer a category from it....
ben_bekir's user avatar
  • 181
0 votes
0 answers
1k views

Can we use ML.NET for OCR using a pertained ONNX model file? ML.NET does not support text recognition but it does offer the ability to run ONNX models. So I am assuming it is possible for OCR.
Zimo's user avatar
  • 342
2 votes
0 answers
384 views

I'm working on a project using ML.NET to predict the next word in a sentence, and I've used n-gram and bagofwords techniques to create my transformed data. However, I'm facing a couple of issues with ...
Nishikant's user avatar
1 vote
0 answers
322 views

I have some problem with Visual Studio 2022 Model builder. As microsoft recommended the object detection model builder is VOTT. In VOTT it can label all the image pretty well. But about Active ...
Fair's user avatar
  • 155

1
2 3 4 5
13