feat: refactor to proper app + write tests

This commit is contained in:
Stevan Freeborn
2025-02-13 17:24:38 -06:00
parent baf4035616
commit 42435ad915
38 changed files with 1462 additions and 253 deletions
@@ -0,0 +1,6 @@
namespace BGR.Console.Removal;
internal interface IInferenceRunner
{
ITensor<float> Run(byte[] model, ITensor<float> inputTensor);
}