Skip to content

luisquintanilla/mlnet-workshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ML.NET Workshop

Welcome to the ML.NET Workshop!

ML.NET is an open source, cross-platform, machine learning framework for .NET developers. You can use ML.NET to create custom machine learning models without having prior machine learning experience and without leaving the .NET ecosystem.

In this workshop, we will build, train, and consume a machine learning model that predicts the price of used cars based on factors such as car make, model, and mileage. We will also learn about the basics of machine learning, the various ML.NET framework features and tooling, and how to easily get started with ML.NET.

Used Car Price

Project Structure

This app is made up of seven projects:

  1. Shared: C# .NET Standard library that has shared code
  2. TrainConsole: C# .NET Core console appplication for training a regression model to predict the price of a car.
  3. Web: ASP.NET Core Razor Pages app that uses the model to predict car prices
  4. ImageTrainConsole: C# .NET Core console application for training a deep learning model to classify images of car damage.
  5. ONNXConsole: C# .NET Core console application to build a pipeline that uses an ONNX model from Azure Custom Vision to detect car damage.
  6. DataTests: .NET Core MSTest application to run data validation tests.
  7. ModelTests: .NET Core MSTest application to run ML.NET model validation tests.

Getting Started

Go ahead and clone this repo to your machine, then dive in and get started!