Projekt

Obecné

Profil

Stáhnout (349 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 abfd9c7c Roman Kalivoda
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 9fc5fa93 Roman Kalivoda
        void Fit(IEnumerable<ModelInput> trainInput);
15 abfd9c7c Roman Kalivoda
16 66c3e0df Roman Kalivoda
        String[] Predict(IEnumerable<ModelInput> input);
17 abfd9c7c Roman Kalivoda
    }
18
}