You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel.NN/Architectures/IEncoder.cs

15 lines
282 B

using Microsoft.ML.OnnxRuntime.Tensors;
using SixLabors.ImageSharp;
namespace ZeroLevel.NN
{
public interface IEncoder
{
int InputW { get; }
int InputH { get; }
float[] Predict(Image image);
float[] Predict(Tensor<float> input);
}
}

Powered by TurnKey Linux.