Class: Azure::BatchAI::Mgmt::V2017_09_01_preview::Models::Caffe2Settings
- Inherits:
-
Object
- Object
- Azure::BatchAI::Mgmt::V2017_09_01_preview::Models::Caffe2Settings
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/caffe2settings.rb
Overview
Specifies the settings for Caffe2 job.
Instance Attribute Summary collapse
-
#command_line_args ⇒ String
python script.
-
#python_interpreter_path ⇒ String
The path to python interpreter.
-
#python_script_file_path ⇒ String
the job.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Caffe2Settings class as Ruby Hash.
Instance Attribute Details
#command_line_args ⇒ String
python script.
24 25 26 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/caffe2settings.rb', line 24 def command_line_args @command_line_args end |
#python_interpreter_path ⇒ String
Returns The path to python interpreter.
20 21 22 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/caffe2settings.rb', line 20 def python_interpreter_path @python_interpreter_path end |
#python_script_file_path ⇒ String
the job.
17 18 19 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/caffe2settings.rb', line 17 def python_script_file_path @python_script_file_path end |
Class Method Details
.mapper ⇒ Object
Mapper for Caffe2Settings class as Ruby Hash. This will be used for serialization/deserialization.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/caffe2settings.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Caffe2Settings', type: { name: 'Composite', class_name: 'Caffe2Settings', model_properties: { python_script_file_path: { client_side_validation: true, required: true, serialized_name: 'pythonScriptFilePath', type: { name: 'String' } }, python_interpreter_path: { client_side_validation: true, required: false, serialized_name: 'pythonInterpreterPath', type: { name: 'String' } }, command_line_args: { client_side_validation: true, required: false, serialized_name: 'commandLineArgs', type: { name: 'String' } } } } } end |