aswi2021tri-musketyri-gitlab/Server/ServerApp/Predictor/IPredictor.cs @ 66c3e0df
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 |
String[] Predict(IEnumerable<ModelInput> input); |
17 |
}
|
18 |
}
|