Class CNTKsettings
java.lang.Object
com.microsoft.azure.management.batchai.CNTKsettings
CNTK (aka Microsoft Cognitive Toolkit) job settings.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet command line arguments that need to be passed to the python script or cntk executable.Get specifies the path of the BrainScript config file.Get the language to use for launching CNTK (aka Microsoft Cognitive Toolkit) job.Get number of processes to launch for the job execution.Get the path to the Python interpreter.Get python script to execute.withCommandLineArgs
(String commandLineArgs) Set command line arguments that need to be passed to the python script or cntk executable.withConfigFilePath
(String configFilePath) Set specifies the path of the BrainScript config file.withLanguageType
(String languageType) Set the language to use for launching CNTK (aka Microsoft Cognitive Toolkit) job.withProcessCount
(Integer processCount) Set number of processes to launch for the job execution.withPythonInterpreterPath
(String pythonInterpreterPath) Set the path to the Python interpreter.withPythonScriptFilePath
(String pythonScriptFilePath) Set python script to execute.
-
Constructor Details
-
CNTKsettings
public CNTKsettings()
-
-
Method Details
-
languageType
Get the language to use for launching CNTK (aka Microsoft Cognitive Toolkit) job. Valid values are 'BrainScript' or 'Python'.- Returns:
- the languageType value
-
withLanguageType
Set the language to use for launching CNTK (aka Microsoft Cognitive Toolkit) job. Valid values are 'BrainScript' or 'Python'.- Parameters:
languageType
- the languageType value to set- Returns:
- the CNTKsettings object itself.
-
configFilePath
Get specifies the path of the BrainScript config file. This property can be specified only if the languageType is 'BrainScript'.- Returns:
- the configFilePath value
-
withConfigFilePath
Set specifies the path of the BrainScript config file. This property can be specified only if the languageType is 'BrainScript'.- Parameters:
configFilePath
- the configFilePath value to set- Returns:
- the CNTKsettings object itself.
-
pythonScriptFilePath
Get python script to execute. This property can be specified only if the languageType is 'Python'.- Returns:
- the pythonScriptFilePath value
-
withPythonScriptFilePath
Set python script to execute. This property can be specified only if the languageType is 'Python'.- Parameters:
pythonScriptFilePath
- the pythonScriptFilePath value to set- Returns:
- the CNTKsettings object itself.
-
pythonInterpreterPath
Get the path to the Python interpreter. This property can be specified only if the languageType is 'Python'.- Returns:
- the pythonInterpreterPath value
-
withPythonInterpreterPath
Set the path to the Python interpreter. This property can be specified only if the languageType is 'Python'.- Parameters:
pythonInterpreterPath
- the pythonInterpreterPath value to set- Returns:
- the CNTKsettings object itself.
-
commandLineArgs
Get command line arguments that need to be passed to the python script or cntk executable.- Returns:
- the commandLineArgs value
-
withCommandLineArgs
Set command line arguments that need to be passed to the python script or cntk executable.- Parameters:
commandLineArgs
- the commandLineArgs value to set- Returns:
- the CNTKsettings object itself.
-
processCount
Get number of processes to launch for the job execution. The default value for this property is equal to nodeCount property.- Returns:
- the processCount value
-
withProcessCount
Set number of processes to launch for the job execution. The default value for this property is equal to nodeCount property.- Parameters:
processCount
- the processCount value to set- Returns:
- the CNTKsettings object itself.
-