mirror of
https://github.com/NecroticBamboo/DeepTrace.git
synced 2025-12-21 11:21:51 +00:00
12 lines
207 B
C#
12 lines
207 B
C#
using PrometheusAPI;
|
|
|
|
namespace DeepTrace.ML
|
|
{
|
|
public interface IMeasure
|
|
{
|
|
public string Name { get; }
|
|
void Reset();
|
|
float Calculate(IEnumerable<TimeSeries> data);
|
|
}
|
|
}
|