Implement new CNN Client code

This commit is contained in:
2026-03-10 21:25:14 -04:00
parent f3734184b4
commit 7beb895ceb
4 changed files with 205 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ namespace MarketData.CNNProcessing
{
public class CNNClient
{
public enum Model{resnet50,resnet50B,resnet50_20241024_270,inception,vgg16,lenet5,ping};
public enum Model{resnet50,resnet50B,resnet50_20241024_270,inception,vgg16,lenet5,convnext,ping};
private static readonly string Alive="Alive";
private readonly HttpClient client = new HttpClient();
private string baseUrl;