CNTKsettings Class

CNTK (aka Microsoft Cognitive Toolkit) job settings.

Inheritance
CNTKsettings

Constructor

CNTKsettings(*, language_type: Optional[str] = None, config_file_path: Optional[str] = None, python_script_file_path: Optional[str] = None, python_interpreter_path: Optional[str] = None, command_line_args: Optional[str] = None, process_count: Optional[int] = None, **kwargs)

Parameters

language_type
str
Required

The language to use for launching CNTK (aka Microsoft Cognitive Toolkit) job. Valid values are 'BrainScript' or 'Python'.

config_file_path
str
Required

Specifies the path of the BrainScript config file. This property can be specified only if the languageType is 'BrainScript'.

python_script_file_path
str
Required

Python script to execute. This property can be specified only if the languageType is 'Python'.

python_interpreter_path
str
Required

The path to the Python interpreter. This property can be specified only if the languageType is 'Python'.

command_line_args
str
Required

Command line arguments that need to be passed to the python script or cntk executable.

process_count
int
Required

Number of processes to launch for the job execution. The default value for this property is equal to nodeCount property.