0
0
RhSolutions-ML/RhSolutions.ML.Builder/Program.cs

11 lines
167 B
C#
Raw Normal View History

2023-09-20 13:46:55 +03:00
using RhSolutions.ML.Lib;
2023-09-20 08:18:22 +03:00
2023-09-20 13:46:55 +03:00
try
2023-09-20 08:18:22 +03:00
{
2023-09-20 13:46:55 +03:00
RhSolutionsMLBuilder.RebuildModel();
Console.WriteLine("Model built");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
2023-09-20 08:18:22 +03:00
}