123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Application.ATG_Classic_App
- {
- public class ML
- {
- public void Go()
- {
- //CreateEmptyDataView();
- ////Create ML Context object
- //MLContext mlContext = new MLContext();
- ////STEP 1: Create Esimtator
- //var estimator =
- // mlContext.Transforms.DetectIidSpike(
- // outputColumnName: nameof(ProductSalesPrediction.Prediction),
- // inputColumnName: nameof(ProductSalesData.numSales),
- // confidence: 95, pvalueHistoryLength: size / 4);
- }
- }
- }
|