Пример #1
0
 /// <summary>
 /// Parses the mlconfig file and check which dataset (train, Validation, test) is defined.
 /// </summary>
 /// <param name="mlConfigPath"></param>
 /// <returns></returns>
 public static (bool training, bool validation, bool test) GetDataSetAviability(string mlConfigPath)
 {
     try
     {
         return(MLFactory.GetDataSetAviability(mlConfigPath));
     }
     catch (Exception)
     {
         throw;
     }
 }
Пример #2
0
 public static Tuple <bool, bool, bool> GetDataSetAviability(string mlConfigPath)
 {
     try
     {
         return(MLFactory.GetDataSetAviability(mlConfigPath));
     }
     catch (Exception)
     {
         throw;
     }
 }