/// <summary>
        /// Returns a textual representation of this object consisting of the names of numerical and binary sampling methods performed for this experimental state and a representation of the mlsettings.
        /// </summary>
        /// <returns>The textual reprentation.</returns>
        public override string ToString()
        {
            StringBuilder sb = new StringBuilder();

            sb.Append("Learning: " + binarySamplings_Learning + "  " + numericSamplings_Learning + " using " + learningApproach);
            sb.Append(mlSettings.ToString());
            return(sb.ToString());
        }
Exemple #2
0
 private string mlSettingsContent(ML_Settings settings)
 {
     return(CommandLine.Commands.COMMAND_SET_MLSETTING + " " + settings.ToString());
 }