mirror of
https://github.com/NecroticBamboo/DeepTrace.git
synced 2025-12-21 11:21:51 +00:00
13 lines
272 B
C#
13 lines
272 B
C#
using Microsoft.ML.Data;
|
|
|
|
namespace DeepTrace.Data;
|
|
|
|
public class Prediction
|
|
{
|
|
[ColumnName("PredictedLabel")]
|
|
public string PredictedLabel { get; set; } = string.Empty;
|
|
|
|
[ColumnName("Score")]
|
|
public float[] Score { get; set; } = Array.Empty<float>();
|
|
}
|