aswi2021tri-musketyri-gitlab/Server/ServerApp/Predictor/IPredictor.cs @ abfd9c7c
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 | void Fit(ModelInput trainInput); |
||
15 | |||
16 | void Predict(ModelInput testInput); |
||
17 | }
|
||
18 | }
|