ML.NET??

Hello ML.NET World

Code workflow

Machine learning model

1
2
3
4
5
6
7
- 모델은 $Price = b+Size∗w$입니다.  
매개 변수 b 및 w는 쌍 세트(크기, 가격)에 줄을 맞춰 추정됩니다.  
모델의 매개 변수를 찾는 데 사용되는 데이터를 학습 데이터 라고 합니다.  
이 기계 학습 모델의 입력을 특성(feature) 이라고 합니다.  
- 이 예제에서는 Size가 유일한 특성입니다.  
- 기계 학습 모델을 학습하는 데 사용하는 실측 자료(ground-truth) 값은 레이블 이라고 합니다.  
여기에서는 학습 데이터 세트의 Price 값이 레이블입니다.

More complex

Data preparation

Model evaluation

ML.NET architecture

       
데이터 로드 및 저장   DataOperationsCatalog  
데이터 준비   TransformsCatalog  
학습 알고리즘 이진 분류 BinaryClassificationCatalog  
  다중 클래스 분류 MulticlassClassificationCatalog  
  변칙 검색 AnomalyDetectionCatalog  
  클러스터링 ClusteringCatalog  
  예측 ForecastingCatalog  
  순위 지정 RankingCatalog  
  재발 RegressionCatalog  
  권장 RecommendationCatalog Microsoft.ML.Recommender NuGet 패키지 추가
  TimeSeries TimeSeriesCatalog Microsoft.ML.TimeSeries NuGet 패키지 추가
모델 사용   ModelOperationsCatalog  

Build the pipeline

Train the model

Use the model

Data models and schema

Model Deployment