dotnet / machinelearning-modelbuilder

Simple UI tool to build custom machine learning models.
Creative Commons Attribution 4.0 International
264 stars 56 forks source link

I want my ML.NET model to work on my local page #2693

Closed AndreyTat1 closed 1 year ago

AndreyTat1 commented 1 year ago

Hello how can I do so what would this model work on my local page on the Internet? I have a button "Download photo" that takes a photo from the computer and in theory my model should process this photo and answer what it depicts how to implement it?

luisquintanilla commented 1 year ago

Hi @AndreyTat1,

Here are a few tutorials that show how to train computer vision models in ML.NET.

You might also choose to use an off-the-shelf ONNX model. This shows how to use those.

These tutorials show how to use an ML model in a Razor Pages app as well as an ASP.NET Core API and Azure Functions

Hope this helps.