experiment_config.rst 22.2 KB
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
3
4
===========================
Experiment Config Reference
===========================

kvartet's avatar
kvartet committed
5
A config file is needed when creating an experiment. This document describes the rules to write a config file and provides some examples.
liuzhe-lz's avatar
liuzhe-lz committed
6

kvartet's avatar
kvartet committed
7
.. Note::
liuzhe-lz's avatar
liuzhe-lz committed
8

kvartet's avatar
kvartet committed
9
    1. This document lists field names with ``camelCase``. If users use these fields in the pythonic way with NNI Python APIs (e.g., ``nni.experiment``), the field names should be converted to ``snake_case``.
liuzhe-lz's avatar
liuzhe-lz committed
10

kvartet's avatar
kvartet committed
11
    2. In this document, the type of fields are formatted as `Python type hint <https://docs.python.org/3.10/library/typing.html>`_. Therefore JSON objects are called `dict` and arrays are called `list`.
liuzhe-lz's avatar
liuzhe-lz committed
12

kvartet's avatar
kvartet committed
13
    .. _path: 
liuzhe-lz's avatar
liuzhe-lz committed
14

kvartet's avatar
kvartet committed
15
    3. Some fields take a path to a file or directory. Unless otherwise noted, both absolute path and relative path are supported, and ``~`` will be expanded to the home directory.
liuzhe-lz's avatar
liuzhe-lz committed
16

kvartet's avatar
kvartet committed
17
18
19
20
21
22
23
24
25
26
       - When written in the YAML file, relative paths are relative to the directory containing that file.
       - When assigned in Python code, relative paths are relative to the current working directory.
       - All relative paths are converted to absolute when loading YAML file into Python class, and when saving Python class to YAML file.

    4. Setting a field to ``None`` or ``null`` is equivalent to not setting the field.

.. contents:: Contents
   :local:
   :depth: 3
 
liuzhe-lz's avatar
liuzhe-lz committed
27

liuzhe-lz's avatar
liuzhe-lz committed
28
29
30
31
32
33
34
35
36
37
38
39
40
Examples
========

Local Mode
^^^^^^^^^^

.. code-block:: yaml

    experimentName: MNIST
    searchSpaceFile: search_space.json
    trialCommand: python mnist.py
    trialCodeDirectory: .
    trialGpuNumber: 1
liuzhe-lz's avatar
liuzhe-lz committed
41
    trialConcurrency: 2
liuzhe-lz's avatar
liuzhe-lz committed
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
    maxExperimentDuration: 24h
    maxTrialNumber: 100
    tuner:
      name: TPE
      classArgs:
        optimize_mode: maximize
    trainingService:
      platform: local
      useActiveGpu: True

Local Mode (Inline Search Space)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. code-block:: yaml

    searchSpace:
      batch_size:
        _type: choice
        _value: [16, 32, 64]
      learning_rate:
        _type: loguniform
        _value: [0.0001, 0.1]
    trialCommand: python mnist.py
    trialGpuNumber: 1
liuzhe-lz's avatar
liuzhe-lz committed
66
    trialConcurrency: 2
liuzhe-lz's avatar
liuzhe-lz committed
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
    tuner:
      name: TPE
      classArgs:
        optimize_mode: maximize
    trainingService:
      platform: local
      useActiveGpu: True

Remote Mode
^^^^^^^^^^^

.. code-block:: yaml

    experimentName: MNIST
    searchSpaceFile: search_space.json
    trialCommand: python mnist.py
    trialCodeDirectory: .
    trialGpuNumber: 1
liuzhe-lz's avatar
liuzhe-lz committed
85
    trialConcurrency: 2
liuzhe-lz's avatar
liuzhe-lz committed
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
    maxExperimentDuration: 24h
    maxTrialNumber: 100
    tuner:
      name: TPE
      classArgs:
        optimize_mode: maximize
    trainingService:
      platform: remote
      machineList:
        - host: 11.22.33.44
          user: alice
          password: xxxxx
        - host: my.domain.com
          user: bob
          sshKeyFile: ~/.ssh/id_rsa

Reference
=========

liuzhe-lz's avatar
liuzhe-lz committed
105
ExperimentConfig
liuzhe-lz's avatar
liuzhe-lz committed
106
^^^^^^^^^^^^^^^^
liuzhe-lz's avatar
liuzhe-lz committed
107

J-shang's avatar
J-shang committed
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
.. list-table::
    :widths: 10 10 80
    :header-rows: 1

    * - Field Name
      - Type
      - Description
    
    * - experimentName
      - ``Optional[str]``
      - Mnemonic name of the experiment, which will be shown in WebUI and nnictl.

    * - searchSpaceFile
      - ``Optional[str]``
      - Path_ to the JSON file containing the search space.
        Search space format is determined by tuner. The common format for built-in tuners is documented  `here <../Tutorial/SearchSpaceSpec.rst>`__.
        Mutually exclusive to ``searchSpace``.

    * - searchSpace
      - ``Optional[JSON]``
      - Search space object.
        The format is determined by tuner. Common format for built-in tuners is documented `here <../Tutorial/SearchSpaceSpec.rst>`__.
        Note that ``None`` means "no such field" so empty search space should be written as ``{}``.
        Mutually exclusive to ``searchSpaceFile``.

    * - trialCommand
      - ``str``
      - Command to launch trial.
        The command will be executed in bash on Linux and macOS, and in PowerShell on Windows.
        Note that using ``python3`` on Linux and macOS, and using ``python`` on Windows.

    * - trialCodeDirectory
      - ``str``
      - `Path`_ to the directory containing trial source files.
        default: ``"."``.
        All files in this directory will be sent to the training machine, unless in the ``.nniignore`` file.
        (See :ref:`nniignore <nniignore>` for details.)

    * - trialConcurrency
      - ``int``
      - Specify how many trials should be run concurrently.
        The real concurrency also depends on hardware resources and may be less than this value.

    * - trialGpuNumber
      - ``Optional[int]``
      - This field might have slightly different meanings for various training services,
        especially when set to ``0`` or ``None``.
        See `training service's document <../training_services.rst>`__ for details.

        In local mode, setting the field to ``0`` will prevent trials from accessing GPU (by empty ``CUDA_VISIBLE_DEVICES``).
        And when set to ``None``, trials will be created and scheduled as if they did not use GPU,
        but they can still use all GPU resources if they want.

    * - maxExperimentDuration
      - ``Optional[str]``
      - Limit the duration of this experiment if specified.
        format: ``number + s|m|h|d``
        examples: ``"10m"``, ``"0.5h"``
        When time runs out, the experiment will stop creating trials but continue to serve WebUI.

    * - maxTrialNumber
      - ``Optional[int]``
      - Limit the number of trials to create if specified.
        When the budget runs out, the experiment will stop creating trials but continue to serve WebUI.

    * - maxTrialDuration
      - ``Optional[str]``
      - Limit the duration of trial job if specified.
        format: ``number + s|m|h|d``
        examples: ``"10m"``, ``"0.5h"``
        When time runs out, the current trial job will stop.

    * - nniManagerIp
      - ``Optional[str]``
      - IP of the current machine, used by training machines to access NNI manager. Not used in local mode.
        If not specified, IPv4 address of ``eth0`` will be used.
        Except for the local mode, it is highly recommended to set this field manually.

    * - useAnnotation
      - ``bool``
      - Enable `annotation <../Tutorial/AnnotationSpec.rst>`__.
        default: ``False``.
        When using annotation, ``searchSpace`` and ``searchSpaceFile`` should not be specified manually.

    * - debug
      - ``bool``
      - Enable debug mode.
        default: ``False``
        When enabled, logging will be more verbose and some internal validation will be loosened.

    * - logLevel
      - ``Optional[str]``
      - Set log level of the whole system.
        values: ``"trace"``, ``"debug"``, ``"info"``, ``"warning"``, ``"error"``, ``"fatal"``
        Defaults to "info" or "debug", depending on ``debug`` option. When debug mode is enabled, Loglevel is set to "debug", otherwise, Loglevel is set to "info".
        Most modules of NNI will be affected by this value, including NNI manager, tuner, training service, etc.
        The exception is trial, whose logging level is directly managed by trial code.
        For Python modules, "trace" acts as logging level 0 and "fatal" acts as ``logging.CRITICAL``.

    * - experimentWorkingDirectory
      - ``Optional[str]``
      - Specify the :ref:`directory <path>` to place log, checkpoint, metadata, and other run-time stuff.
        By default uses ``~/nni-experiments``.
        NNI will create a subdirectory named by experiment ID, so it is safe to use the same directory for multiple experiments.

    * - tunerGpuIndices
      - ``Optional[list[int] | str | int]``
      - Limit the GPUs visible to tuner, assessor, and advisor.
        This will be the ``CUDA_VISIBLE_DEVICES`` environment variable of tuner process.
        Because tuner, assessor, and advisor run in the same process, this option will affect them all.

    * - tuner
      - ``Optional[AlgorithmConfig]``
      - Specify the tuner.
        The built-in tuners can be found `here <../builtin_tuner.rst>`__ and you can follow `this tutorial <../Tuner/CustomizeTuner.rst>`__ to customize a new tuner.

    * - assessor
      - ``Optional[AlgorithmConfig]``
      - Specify the assessor.
        The built-in assessors can be found `here <../builtin_assessor.rst>`__ and you can follow `this tutorial <../Assessor/CustomizeAssessor.rst>`__ to customize a new assessor.

    * - advisor
      - ``Optional[AlgorithmConfig]``
      - Specify the advisor.
        NNI provides two built-in advisors: `BOHB <../Tuner/BohbAdvisor.rst>`__ and `Hyperband <../Tuner/HyperbandAdvisor.rst>`__, and you can follow `this tutorial <../Tuner/CustomizeAdvisor.rst>`__ to customize a new advisor.

    * - trainingService
      - ``TrainingServiceConfig``
      - Specify the `training service <../TrainingService/Overview.rst>`__.

    * - sharedStorage
      - ``Optional[SharedStorageConfig]``
      - Configure the shared storage, detailed usage can be found `here <../Tutorial/HowToUseSharedStorage.rst>`__.
kvartet's avatar
kvartet committed
241

liuzhe-lz's avatar
liuzhe-lz committed
242
AlgorithmConfig
liuzhe-lz's avatar
liuzhe-lz committed
243
244
245
246
^^^^^^^^^^^^^^^

``AlgorithmConfig`` describes a tuner / assessor / advisor algorithm.

kvartet's avatar
kvartet committed
247
For customized algorithms, there are two ways to describe them:
liuzhe-lz's avatar
liuzhe-lz committed
248

kvartet's avatar
kvartet committed
249
  1. `Register the algorithm <../Tutorial/InstallCustomizedAlgos.rst>`__ to use it like built-in. (preferred)
liuzhe-lz's avatar
liuzhe-lz committed
250
251

  2. Specify code directory and class name directly.
liuzhe-lz's avatar
liuzhe-lz committed
252

J-shang's avatar
J-shang committed
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
.. list-table::
    :widths: 10 10 80
    :header-rows: 1

    * - Field Name
      - Type
      - Description
    
    * - name
      - ``Optional[str]``
      - Name of the built-in or registered algorithm.
        ``str`` for the built-in and registered algorithm, ``None`` for other customized algorithms.

    * - className
      - ``Optional[str]``
      - Qualified class name of not registered customized algorithm.
        ``None`` for the built-in and registered algorithm, ``str`` for other customized algorithms.
        example: ``"my_tuner.MyTuner"``

    * - codeDirectory
      - ``Optional[str]``
      - `Path`_ to the directory containing the customized algorithm class.
        ``None`` for the built-in and registered algorithm, ``str`` for other customized algorithms.

    * - classArgs
      - ``Optional[dict[str, Any]]``
      - Keyword arguments passed to algorithm class' constructor.
        See algorithm's document for supported value.
liuzhe-lz's avatar
liuzhe-lz committed
281
282

TrainingServiceConfig
liuzhe-lz's avatar
liuzhe-lz committed
283
^^^^^^^^^^^^^^^^^^^^^
liuzhe-lz's avatar
liuzhe-lz committed
284

kvartet's avatar
kvartet committed
285
One of the following:
liuzhe-lz's avatar
liuzhe-lz committed
286

liuzhe-lz's avatar
liuzhe-lz committed
287
288
- `LocalConfig`_
- `RemoteConfig`_
J-shang's avatar
J-shang committed
289
- `OpenpaiConfig`_
liuzhe-lz's avatar
liuzhe-lz committed
290
- `AmlConfig`_
291
- `DlcConfig`_
kvartet's avatar
kvartet committed
292
- `HybridConfig`_
liuzhe-lz's avatar
liuzhe-lz committed
293

kvartet's avatar
kvartet committed
294
For `Kubeflow <../TrainingService/KubeflowMode.rst>`_, `FrameworkController <../TrainingService/FrameworkControllerMode.rst>`_, and `AdaptDL <../TrainingService/AdaptDLMode.rst>`_ training platforms, it is suggested to use `v1 config schema <../Tutorial/ExperimentConfig.rst>`_ for now.
liuzhe-lz's avatar
liuzhe-lz committed
295
296

LocalConfig
kvartet's avatar
kvartet committed
297
-----------
liuzhe-lz's avatar
liuzhe-lz committed
298

kvartet's avatar
kvartet committed
299
Detailed usage can be found `here <../TrainingService/LocalMode.rst>`__.
liuzhe-lz's avatar
liuzhe-lz committed
300

J-shang's avatar
J-shang committed
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
.. list-table::
    :widths: 10 10 80
    :header-rows: 1

    * - Field Name
      - Type
      - Description

    * - platform
      - ``"local"``
      -
    
    * - useActiveGpu
      - ``Optional[bool]``
      - Specify whether NNI should submit trials to GPUs occupied by other tasks.
        Must be set when ``trialGpuNumber`` greater than zero.
        Following processes can make GPU "active":

          - non-NNI CUDA programs
          - graphical desktop
          - trials submitted by other NNI instances, if you have more than one NNI experiments running at same time
          - other users' CUDA programs, if you are using a shared server
          
        If you are using a graphical OS like Windows 10 or Ubuntu desktop, set this field to ``True``, otherwise, the GUI will prevent NNI from launching any trial.
        When you create multiple NNI experiments and ``useActiveGpu`` is set to ``True``, they will submit multiple trials to the same GPU(s) simultaneously.

    * - maxTrialNumberPerGpu
      - ``int``
      - Specify how many trials can share one GPU.
        default: ``1``

    * - gpuIndices
      - ``Optional[list[int] | str | int]``
      - Limit the GPUs visible to trial processes.
        If ``trialGpuNumber`` is less than the length of this value, only a subset will be visible to each trial.
        This will be used as ``CUDA_VISIBLE_DEVICES`` environment variable.
liuzhe-lz's avatar
liuzhe-lz committed
337
338

RemoteConfig
kvartet's avatar
kvartet committed
339
------------
liuzhe-lz's avatar
liuzhe-lz committed
340

kvartet's avatar
kvartet committed
341
Detailed usage can be found `here <../TrainingService/RemoteMachineMode.rst>`__.
liuzhe-lz's avatar
liuzhe-lz committed
342

J-shang's avatar
J-shang committed
343
344
345
.. list-table::
    :widths: 10 10 80
    :header-rows: 1
liuzhe-lz's avatar
liuzhe-lz committed
346

J-shang's avatar
J-shang committed
347
348
349
    * - Field Name
      - Type
      - Description
liuzhe-lz's avatar
liuzhe-lz committed
350

J-shang's avatar
J-shang committed
351
352
353
    * - platform
      - ``"remote"``
      -
liuzhe-lz's avatar
liuzhe-lz committed
354

J-shang's avatar
J-shang committed
355
356
357
    * - machineList
      - ``List[RemoteMachineConfig]``
      - List of training machines.
liuzhe-lz's avatar
liuzhe-lz committed
358

J-shang's avatar
J-shang committed
359
360
361
    * - reuseMode
      - ``bool``
      - Enable `reuse mode <../TrainingService/Overview.rst#training-service-under-reuse-mode>`__.
liuzhe-lz's avatar
liuzhe-lz committed
362
363

RemoteMachineConfig
kvartet's avatar
kvartet committed
364
"""""""""""""""""""
liuzhe-lz's avatar
liuzhe-lz committed
365

J-shang's avatar
J-shang committed
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
.. list-table::
    :widths: 10 10 80
    :header-rows: 1

    * - Field Name
      - Type
      - Description

    * - host
      - ``str``
      - IP or hostname (domain name) of the machine.

    * - port
      - ``int``
      - SSH service port.
        default: ``22``

    * - user
      - ``str``
      - Login user name.

    * - password
      - ``Optional[str]``
      - If not specified, ``sshKeyFile`` will be used instead.
    
    * - sshKeyFile
      - ``Optional[str]``
      - `Path`_ to ``sshKeyFile`` (identity file).
        Only used when ``password`` is not specified.

    * - sshPassphrase
      - ``Optional[str]``
      - Passphrase of SSH identity file.

    * - useActiveGpu
      - ``bool``
      - Specify whether NNI should submit trials to GPUs occupied by other tasks.
        default: ``False``
        Must be set when ``trialGpuNumber`` greater than zero.
        Following processes can make GPU "active":

          - non-NNI CUDA programs
          - graphical desktop
          - trials submitted by other NNI instances, if you have more than one NNI experiments running at same time
          - other users' CUDA programs, if you are using a shared server
kvartet's avatar
kvartet committed
411
  
J-shang's avatar
J-shang committed
412
413
        If your remote machine is a graphical OS like Ubuntu desktop, set this field to ``True``, otherwise, the GUI will prevent NNI from launching any trial.
        When you create multiple NNI experiments and ``useActiveGpu`` is set to ``True``, they will submit multiple trials to the same GPU(s) simultaneously.
liuzhe-lz's avatar
liuzhe-lz committed
414

J-shang's avatar
J-shang committed
415
416
417
418
    * - maxTrialNumberPerGpu
      - ``int``
      - Specify how many trials can share one GPU.
        default: ``1``
liuzhe-lz's avatar
liuzhe-lz committed
419

J-shang's avatar
J-shang committed
420
421
422
423
424
    * - gpuIndices
      - ``Optional[list[int] | str | int]``
      - Limit the GPUs visible to trial processes.
        If ``trialGpuNumber`` is less than the length of this value, only a subset will be visible to each trial.
        This will be used as ``CUDA_VISIBLE_DEVICES`` environment variable.
liuzhe-lz's avatar
liuzhe-lz committed
425

J-shang's avatar
J-shang committed
426
427
428
429
    * - pythonPath
      - ``Optional[str]``
      - Specify a Python environment.
        This path will be inserted at the front of PATH. Here are some examples: 
liuzhe-lz's avatar
liuzhe-lz committed
430

J-shang's avatar
J-shang committed
431
432
          - (linux) pythonPath: ``/opt/python3.7/bin``
          - (windows) pythonPath: ``C:/Python37``
liuzhe-lz's avatar
liuzhe-lz committed
433

J-shang's avatar
J-shang committed
434
        If you are working on Anaconda, there is some difference. On Windows, you also have to add ``../script`` and ``../Library/bin`` separated by ``;``. Examples are as below:
liuzhe-lz's avatar
liuzhe-lz committed
435

J-shang's avatar
J-shang committed
436
437
          - (linux anaconda) pythonPath: ``/home/yourname/anaconda3/envs/myenv/bin/``
          - (windows anaconda) pythonPath: ``C:/Users/yourname/.conda/envs/myenv;C:/Users/yourname/.conda/envs/myenv/Scripts;C:/Users/yourname/.conda/envs/myenv/Library/bin``
kvartet's avatar
kvartet committed
438

J-shang's avatar
J-shang committed
439
        This is useful if preparing steps vary for different machines.
liuzhe-lz's avatar
liuzhe-lz committed
440

liuzhe-lz's avatar
liuzhe-lz committed
441
OpenpaiConfig
kvartet's avatar
kvartet committed
442
-------------
liuzhe-lz's avatar
liuzhe-lz committed
443

kvartet's avatar
kvartet committed
444
Detailed usage can be found `here <../TrainingService/PaiMode.rst>`__.
liuzhe-lz's avatar
liuzhe-lz committed
445

J-shang's avatar
J-shang committed
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
.. list-table::
    :widths: 10 10 80
    :header-rows: 1

    * - Field Name
      - Type
      - Description

    * - platform
      - ``"openpai"``
      -
    
    * - host
      - ``str``
      - Hostname of OpenPAI service.
        This may include ``https://`` or ``http://`` prefix.
        HTTPS will be used by default.

    * - username
      - ``str``
      - OpenPAI user name.

    * - token
      - ``str``
      - OpenPAI user token.
        This can be found in your OpenPAI user settings page.

    * - trialCpuNumber
      - ``int``
      - Specify the CPU number of each trial to be used in OpenPAI container.

    * - trialMemorySize
      - ``str``
      - Specify the memory size of each trial to be used in OpenPAI container.
        format: ``number + tb|gb|mb|kb``.
        examples: ``"8gb"``, ``"8192mb"``.

    * - storageConfigName
      - ``str``
      - Specify the storage name used in OpenPAI.

    * - dockerImage
      - ``str``
      - Name and tag of docker image to run the trials.
        default: ``"msranni/nni:latest"``.

    * - localStorageMountPoint
      - ``str``
      - :ref:`Mount point <path>` of storage service (typically NFS) on the local machine.

    * - containerStorageMountPoint
      - ``str``
      - Mount point of storage service (typically NFS) in docker container.
        This must be an absolute path.

    * - reuseMode
      - ``bool``
      - Enable `reuse mode <../TrainingService/Overview.rst#training-service-under-reuse-mode>`__.
        default: ``False``.

    * - openpaiConfig
      - ``Optional[JSON]``
      - Embedded OpenPAI config file.

    * - openpaiConfigFile
      - ``Optional[str]``
      - `Path`_ to OpenPAI config file.
        An example can be found `here <https://github.com/microsoft/pai/blob/master/docs/manual/cluster-user/examples/hello-world-job.yaml>`__.
liuzhe-lz's avatar
liuzhe-lz committed
514
515

AmlConfig
kvartet's avatar
kvartet committed
516
---------
liuzhe-lz's avatar
liuzhe-lz committed
517

kvartet's avatar
kvartet committed
518
Detailed usage can be found `here <../TrainingService/AMLMode.rst>`__.
liuzhe-lz's avatar
liuzhe-lz committed
519

J-shang's avatar
J-shang committed
520
521
522
.. list-table::
    :widths: 10 10 80
    :header-rows: 1
liuzhe-lz's avatar
liuzhe-lz committed
523

J-shang's avatar
J-shang committed
524
525
526
    * - Field Name
      - Type
      - Description
liuzhe-lz's avatar
liuzhe-lz committed
527

J-shang's avatar
J-shang committed
528
529
530
531
532
533
534
535
    * - platform
      - ``"aml"``
      -
    
    * - dockerImage
      - ``str``
      - Name and tag of docker image to run the trials.
        default: ``"msranni/nni:latest"``
liuzhe-lz's avatar
liuzhe-lz committed
536

J-shang's avatar
J-shang committed
537
538
539
    * - subscriptionId
      - ``str``
      - Azure subscription ID.
liuzhe-lz's avatar
liuzhe-lz committed
540

J-shang's avatar
J-shang committed
541
542
543
    * - resourceGroup
      - ``str``
      - Azure resource group name.
liuzhe-lz's avatar
liuzhe-lz committed
544

J-shang's avatar
J-shang committed
545
546
547
    * - workspaceName
      - ``str``
      - Azure workspace name.
liuzhe-lz's avatar
liuzhe-lz committed
548

J-shang's avatar
J-shang committed
549
550
551
    * - computeTarget
      - ``str``
      - AML compute cluster name.
kvartet's avatar
kvartet committed
552

553
554
555
556
557
DlcConfig
---------

Detailed usage can be found `here <../TrainingService/DlcMode.rst>`__.

J-shang's avatar
J-shang committed
558
559
560
.. list-table::
    :widths: 10 10 80
    :header-rows: 1
561

J-shang's avatar
J-shang committed
562
563
564
    * - Field Name
      - Type
      - Description
565

J-shang's avatar
J-shang committed
566
567
568
569
570
571
572
573
    * - platform
      - ``"dlc"``
      -
    
    * - type
      - ``str``
      - Job spec type.
        default: ``"worker"``.
574

J-shang's avatar
J-shang committed
575
576
577
    * - image
      - ``str``
      - Name and tag of docker image to run the trials.
578

J-shang's avatar
J-shang committed
579
580
581
    * - jobType
      - ``str``
      - PAI-DLC training job type, ``"TFJob"`` or ``"PyTorchJob"``.
582

J-shang's avatar
J-shang committed
583
584
585
    * - podCount
      - ``str``
      - Pod count to run a single training job.
586

J-shang's avatar
J-shang committed
587
588
589
    * - ecsSpec
      - ``str``
      - Training server config spec string.
590

J-shang's avatar
J-shang committed
591
592
593
    * - region
      - ``str``
      - The region where PAI-DLC public-cluster locates.
594

J-shang's avatar
J-shang committed
595
596
597
    * - nasDataSourceId
      - ``str``
      - The NAS datasource id configurated in PAI-DLC side.
598

J-shang's avatar
J-shang committed
599
600
601
    * - accessKeyId
      - ``str``
      - The accessKeyId of your cloud account.
602

J-shang's avatar
J-shang committed
603
604
605
    * - accessKeySecret
      - ``str``
      - The accessKeySecret of your cloud account.
606

J-shang's avatar
J-shang committed
607
608
609
    * - localStorageMountPoint
      - ``str``
      - The mount point of the NAS on PAI-DSW server, default is /home/admin/workspace/.
610

J-shang's avatar
J-shang committed
611
612
613
    * - containerStorageMountPoint
      - ``str``
      - The mount point of the NAS on PAI-DLC side, default is /root/data/.
614

kvartet's avatar
kvartet committed
615
616
617
HybridConfig
------------

J-shang's avatar
J-shang committed
618
Currently only support `LocalConfig`_, `RemoteConfig`_, `OpenpaiConfig`_ and `AmlConfig`_ . Detailed usage can be found `here <../TrainingService/HybridMode.rst>`__.
kvartet's avatar
kvartet committed
619
620
621
622
623
624
625
626
627

SharedStorageConfig
^^^^^^^^^^^^^^^^^^^

Detailed usage can be found `here <../Tutorial/HowToUseSharedStorage.rst>`__.

nfsConfig
---------

J-shang's avatar
J-shang committed
628
629
630
.. list-table::
    :widths: 10 10 80
    :header-rows: 1
kvartet's avatar
kvartet committed
631

J-shang's avatar
J-shang committed
632
633
634
    * - Field Name
      - Type
      - Description
kvartet's avatar
kvartet committed
635

J-shang's avatar
J-shang committed
636
637
638
    * - storageType
      - ``"NFS"``
      -
kvartet's avatar
kvartet committed
639

J-shang's avatar
J-shang committed
640
641
642
643
    * - localMountPoint
      - ``str``
      - The path that the storage has been or will be mounted in the local machine.
        If the path does not exist, it will be created automatically. Recommended to use an absolute path, i.e. ``/tmp/nni-shared-storage``.
kvartet's avatar
kvartet committed
644

J-shang's avatar
J-shang committed
645
646
647
648
    * - remoteMountPoint
      - ``str``
      - The path that the storage will be mounted in the remote machine.
        If the path does not exist, it will be created automatically. Recommended to use a relative path. i.e. ``./nni-shared-storage``.
kvartet's avatar
kvartet committed
649

J-shang's avatar
J-shang committed
650
651
652
653
654
    * - localMounted
      - ``str``
      - Specify the object and status to mount the shared storage.
        values: ``"usermount"``, ``"nnimount"``, ``"nomount"``
        ``usermount`` means the user has already mounted this storage on localMountPoint. ``nnimount`` means NNI will try to mount this storage on localMountPoint. ``nomount`` means storage will not mount in the local machine, will support partial storages in the future.
kvartet's avatar
kvartet committed
655

J-shang's avatar
J-shang committed
656
657
658
    * - nfsServer
      - ``str``
      - NFS server host.
kvartet's avatar
kvartet committed
659

J-shang's avatar
J-shang committed
660
661
662
    * - exportedDirectory
      - ``str``
      - Exported directory of NFS server, detailed `here <https://www.ibm.com/docs/en/aix/7.2?topic=system-nfs-exporting-mounting>`_.
kvartet's avatar
kvartet committed
663
664
665
666

azureBlobConfig
---------------

J-shang's avatar
J-shang committed
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
.. list-table::
    :widths: 10 10 80
    :header-rows: 1

    * - Field Name
      - Type
      - Description

    * - storageType
      - ``"AzureBlob"``
      -

    * - localMountPoint
      - ``str``
      - The path that the storage has been or will be mounted in the local machine.
        If the path does not exist, it will be created automatically. Recommended to use an absolute path, i.e. ``/tmp/nni-shared-storage``.

    * - remoteMountPoint
      - ``str``
      - The path that the storage will be mounted in the remote machine.
        If the path does not exist, it will be created automatically. Recommended to use a relative path. i.e. ``./nni-shared-storage``.
        Note that the directory must be empty when using AzureBlob.

    * - localMounted
      - ``str``
      - Specify the object and status to mount the shared storage.
        values: ``"usermount"``, ``"nnimount"``, ``"nomount"``.
        ``usermount`` means the user has already mounted this storage on localMountPoint. ``nnimount`` means NNI will try to mount this storage on localMountPoint. ``nomount`` means storage will not mount in the local machine, will support partial storages in the future.

    * - storageAccountName
      - ``str``
      - Azure storage account name.

    * - storageAccountKey
      - ``Optional[str]``
      - Azure storage account key.

    * - containerName
      - ``str``
      - AzureBlob container name.