CaffeSettings Class

Caffe job settings.

Inheritance
CaffeSettings

Constructor

CaffeSettings(*, 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

config_file_path
str
Required

Path of the config file for the job. This property cannot be specified if pythonScriptFilePath is specified.

python_script_file_path
str
Required

Python script to execute. This property cannot be specified if configFilePath is specified.

python_interpreter_path
str
Required

The path to the Python interpreter. The property can be specified only if the pythonScriptFilePath is specified.

command_line_args
str
Required

Command line arguments that need to be passed to the Caffe job.

process_count
int
Required

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