aswi2021tri-musketyri-gitlab/Server/ServerApp/Predictor/AnomalyDetectionResult.cs @ 9a529f10
1 |
// |
---|---|
2 |
// Author: Roman Kalivoda
|
3 |
//
|
4 |
|
5 |
using Microsoft.ML.Data; |
6 |
|
7 |
namespace ServerApp.Predictor |
8 |
{
|
9 |
class AnomalyDetectionResult |
10 |
{
|
11 |
[VectorType(3)] |
12 |
public double[] Prediction { get; set; } |
13 |
}
|
14 |
}
|