1 implementation of GetSettingsString
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
2352
public string
GetSettingsString
()
14 references to GetSettingsString
Microsoft.ML.Data (4)
Commands\DataCommand.cs (1)
123
pipe.Send(TelemetryMessage.CreateTrainer(commandLineFactory.Name, commandLineFactory.
GetSettingsString
()));
Commands\ScoreCommand.cs (1)
402
env, out bindable, scorerSettings.Name, scorerSettings.
GetSettingsString
(), predictor);
DataLoadSave\Text\TextLoader.cs (1)
1363
if (!CmdParser.ParseArguments(host, loader.
GetSettingsString
(), optionsNew, typeof(Options), msg => ch.Error(msg)))
Utilities\ComponentCreation.cs (1)
285
return ComponentCatalog.CreateInstance<TRes>(env, factory.SignatureType, factory.Name, factory.
GetSettingsString
(), extraArgs);
Microsoft.ML.Predictor.Tests (7)
CmdLine\CmdLine.cs (2)
242
sb.AppendFormat(" subArray={0}{1}", sc.Name, sc.
GetSettingsString
());
252
sb.AppendFormat(" subTaggedArray{1}={0}{2}", value.Name, pair.Key == "" ? "" : "[" + pair.Key + "]", value.
GetSettingsString
());
CmdLine\CmdLineReverseTest.cs (5)
70
CmdParser.ParseArguments(env, ((ICommandLineComponentFactory)outerArg1.sub1).
GetSettingsString
(), testArg = new SimpleArg());
73
CmdParser.ParseArguments(env, ((ICommandLineComponentFactory)outerArg1.sub2).
GetSettingsString
(), testArg = new SimpleArg());
76
CmdParser.ParseArguments(env, ((ICommandLineComponentFactory)outerArg1.sub3).
GetSettingsString
(), testArg = new SimpleArg());
187
commandLineLeft.
GetSettingsString
() == commandLineRight.
GetSettingsString
();
Microsoft.ML.ResultProcessor (2)
ResultProcessor.cs (2)
442
acceptableCommand.Name + " " + acceptableCommand.
GetSettingsString
(), out commandArgs, out command, trimExe))
535
CmdParser.ParseArguments(env, commandLineTrainer.
GetSettingsString
(), trainerArgs);
Microsoft.ML.TestFramework (1)
DataPipe\TestDataPipeBase.cs (1)
349
var str = commandLineFactory.
GetSettingsString
();