From 07230daab53af21518fbc466fa7bbd778ab07f85 Mon Sep 17 00:00:00 2001 From: diegorod Date: Fri, 30 Sep 2022 13:54:42 -0400 Subject: [PATCH] BaseModelsRelativePath fix Path was one folder off. --- .../SpikeDetectionE2EApp/SpikeDetection.WinForms/Form1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/SpikeDetection.WinForms/Form1.cs b/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/SpikeDetection.WinForms/Form1.cs index 8a1507181..25ad02dc7 100644 --- a/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/SpikeDetection.WinForms/Form1.cs +++ b/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/SpikeDetection.WinForms/Form1.cs @@ -16,7 +16,7 @@ public partial class Form1 : Form private string filePath = ""; Tuple tup = null; Dictionary> dict = new Dictionary>(); - private static string BaseModelsRelativePath = @"../../../../MLModels"; + private static string BaseModelsRelativePath = @"../../../MLModels"; private static string ModelRelativePath1 = $"{BaseModelsRelativePath}/ProductSalesSpikeModel.zip"; private static string ModelRelativePath2 = $"{BaseModelsRelativePath}/ProductSalesChangePointModel.zip";