Projekt

Obecné

Profil

Stáhnout (352 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
using Microsoft.ML;
7
using Microsoft.ML.Data;
8

    
9
namespace ServerApp.Predictor
10
{
11
    interface IPredictor
12
    {
13

    
14
        void Fit(IEnumerable<ModelInput> trainInput);
15

    
16
        ModelOutput Predict(IEnumerable<ModelInput> input);
17
    }
18
}
(1-1/4)