Skip to content

Latest commit

Β 

History

History
33 lines (18 loc) Β· 1.79 KB

File metadata and controls

33 lines (18 loc) Β· 1.79 KB

ML.NET Example Projects πŸš€

This README outlines the different types of machine learning tasks demonstrated by the example projects in this repository:

Classification Tasks:

  • Sentiment Analysis: Predict whether a text (like a product review) expresses a positive or negative sentiment. This demonstrates a binary classification task. πŸ‘πŸ‘Ž
  • GitHub Issue Classification: Categorize GitHub issues into different labels based on their description. This demonstrates a multiclass classification task. 🏷️➑️

Regression Tasks:

  • Price Predictor: Predict a numerical value, such as the price of a product, based on its features. This demonstrates a regression task. πŸ“ˆ

Clustering Tasks:

  • Iris Clustering: Group data points (in this case, Iris flower measurements) into clusters based on their similarities, without predefined labels. This demonstrates a clustering task. 🌸➑️

Recommendation Systems:

  • Recommendation: Generate personalized recommendations for movies based on users' past ratings. 🎬⭐

Deep Learning Integration:

  • Image Classification: Customize an existing image recognition model (TensorFlow) to classify images into new, specific categories. This demonstrates transfer learning. πŸ–ΌοΈβž‘οΈ
  • Detect Objects in Images: Identify and locate specific objects within images using a pre-trained ONNX model. πŸŽ―πŸ”

Working with Pre-trained Models:

  • Classify Sentiment of Movie Reviews (TensorFlow): Utilize a pre-trained TensorFlow model to determine the sentiment (positive or negative) expressed in movie reviews. πŸŽ₯➑️

Anomaly Detection:

  • Anomaly Detection: Identify unusual or unexpected data points in product sales data. This demonstrates an anomaly detection task. βš οΈπŸ“Š