integration_tests.yml 8.41 KB
Newer Older
chicm-ms's avatar
chicm-ms committed
1
2

defaultTestCaseConfig:
3
  launchCommand: nnictl create --config $configFile --debug
chicm-ms's avatar
chicm-ms committed
4
5
6
  stopCommand: nnictl stop
  experimentStatusCheck: True
  platform: linux darwin win32
chicm-ms's avatar
chicm-ms committed
7
  trainingService: all
chicm-ms's avatar
chicm-ms committed
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

testCases:
#######################################################################
# nni examples test
#######################################################################
- name: sklearn-classification
  # test case config yml file relative to nni source code directory
  configFile: test/config/examples/sklearn-classification.yml

  # test case specific config, the content of configFile will be overrided
  # by config section
  config:

  # validator is called after experiment is done
  # validator class needs to be implemented in nni_test/nnitest/validators.py
  validator:

  # launch command, default launch command is 'nnictl create --config $configFile'
26
  launchCommand: nnictl create --config $configFile --debug
chicm-ms's avatar
chicm-ms committed
27
28
29
30
31
32
33
34
35
36

  # stop command, default stop command is 'nnictl stop', empty means no stop command
  stopCommand: nnictl stop

  # set experiment ID into variable, variable name should start with $, such as $expId
  setExperimentIdtoVar: $expId

  # check status of experiment before calling validator
  experimentStatusCheck: True

37
38
39
40
41
42
43
44
45
- name: shared-storage-remote-azureblob
  configFile: test/config/sharedstorage_test/config_sharedstorage_remote_azureblob.yml
  config:
    sharedStorage:
      localMountPoint: /tmp/nnimount/testlocalrootpath
      remoteMountPoint: /tmp/nnimount/testremoterootpath
      storageAccountName: nennistorage
      storageAccountKey: $(azureblob_token_test)
      containerName: sharedstorage
46
  trainingService: remote
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  validator:
    class: FileExistValidator
    kwargs:
      rootpath: /tmp/nnimount/testlocalrootpath

# TODO: Enable this case after nfs server is ready
#- name: shared-storage-remote-nfs
#  configFile: test/config/sharedstorage_test/config_sharedstorage_remote_nfs.yml
#  config:
#    sharedStorage:
#      localMountPoint: /tmp/nnimount/testlocalrootpath
#      remoteMountPoint: /tmp/nnimount/testremoterootpath
#      nfsServer: $(NFS_IP)
#      exportedDirectory: /home/nni/mnt/
#  validator:
#    class: FileExistValidator
#    kwargs:
#      rootpath: /tmp/nnimount/testlocalrootpath

chicm-ms's avatar
chicm-ms committed
66
67
68
- name: sklearn-regression
  configFile: test/config/examples/sklearn-regression.yml

liuzhe-lz's avatar
liuzhe-lz committed
69
70
- name: mnist-tensorflow
  configFile: test/config/examples/mnist-tfv2.yml
71
  config:
SparkSnail's avatar
SparkSnail committed
72
    maxExecDuration: 10m # This example will use longger time in remote mode, set max_duration to 10m to avoid timeout error.
73
74
    maxTrialNum: 1
    trialConcurrency: 1
liuzhe-lz's avatar
liuzhe-lz committed
75
  trainingService: local remote # FIXME: timeout on pai, looks like tensorflow failed to link CUDA
chicm-ms's avatar
chicm-ms committed
76

77
- name: mnist-pytorch-local
chicm-ms's avatar
chicm-ms committed
78
  configFile: test/config/examples/mnist-pytorch.yml
79
80
  # download data first, to prevent concurrent issue.
  launchCommand: python3 ../examples/trials/mnist-pytorch/mnist.py --epochs 1 --batch_num 0 --data_dir ../examples/trials/mnist-pytorch/data && nnictl create --config $configFile --debug
81
82
83
84
85
86
87
  trainingService: local

- name: mnist-pytorch-non-local
  configFile: test/config/examples/mnist-pytorch.yml
  # download data first, to prevent concurrent issue.
  launchCommand: nnictl create --config $configFile --debug
  trainingService: remote pai kubeflow frameworkcontroller dlts
chicm-ms's avatar
chicm-ms committed
88

liuzhe-lz's avatar
liuzhe-lz committed
89
90
91
92
93
94
# TODO: move this and following commented test cases to pytorch or tf2
#- name: mnist-annotation
#  configFile: test/config/examples/mnist-annotation.yml
#  config:
#    maxTrialNum: 1
#    trialConcurrency: 1
chicm-ms's avatar
chicm-ms committed
95
96
97
98
99
100
101
102
103
104
105
106
107

- name: cifar10-pytorch
  configFile: test/config/examples/cifar10-pytorch.yml
  config:
    # this example downloads large pretrained model weights
    # test 1 trial to save time
    maxExecDuration: 10m
    maxTrialNum: 1
    trialConcurrency: 1
    trial:
      command: python3 main.py --epochs 1 --batches 1
      gpuNum: 0

SparkSnail's avatar
SparkSnail committed
108
109
110
111
- name: cifar10-pytorch-adl
  configFile: test/config/examples/cifar10-pytorch-adl.yml
  trainingService: adl

liuzhe-lz's avatar
liuzhe-lz committed
112
113
#- name: nested-ss
#  configFile: test/config/examples/mnist-nested-search-space.yml
chicm-ms's avatar
chicm-ms committed
114

115
116
- name: classic-nas-gen-ss
  configFile: test/config/examples/classic-nas-pytorch.yml
SparkSnail's avatar
SparkSnail committed
117
  launchCommand: nnictl ss_gen --trial_command="python3 mnist.py --epochs 1" --trial_dir=../examples/nas/legacy/classic_nas --file=config/examples/nni-nas-search-space.json
118
119
  stopCommand:
  experimentStatusCheck: False
chicm-ms's avatar
chicm-ms committed
120
  trainingService: local
121
122
123
124
125

- name: classic-nas-pytorch
  configFile: test/config/examples/classic-nas-pytorch.yml
  # remove search space file
  stopCommand: nnictl stop
126
  onExitCommand: python3 -c "import os; os.remove('config/examples/nni-nas-search-space.json')"
chicm-ms's avatar
chicm-ms committed
127
  trainingService: local
chicm-ms's avatar
chicm-ms committed
128
129
130
131
132
133
134
135
136
137
138
139
140
141

#########################################################################
# nni features test
#########################################################################
- name: metrics-float
  configFile: test/config/metrics_test/config.yml
  config:
    maxTrialNum: 1
    trialConcurrency: 1
  validator:
    class: MetricsValidator
    kwargs:
      expected_result_file: expected_metrics.json

Yan Ni's avatar
Yan Ni committed
142
143
144
145
146
147
148
149
- name: export-float
  configFile: test/config/metrics_test/config.yml
  config:
    maxTrialNum: 1
    trialConcurrency: 1
  validator:
    class: ExportValidator 

chicm-ms's avatar
chicm-ms committed
150
151
152
153
154
155
156
157
158
- name: metrics-dict
  configFile: test/config/metrics_test/config_dict_metrics.yml
  config:
    maxTrialNum: 1
    trialConcurrency: 1
  validator:
    class: MetricsValidator
    kwargs:
      expected_result_file: expected_metrics_dict.json
chicm-ms's avatar
chicm-ms committed
159

Yan Ni's avatar
Yan Ni committed
160
161
162
163
164
165
166
167
- name: export-dict
  configFile: test/config/metrics_test/config_dict_metrics.yml
  config:
    maxTrialNum: 1
    trialConcurrency: 1
  validator:
    class: ExportValidator 

168
169
170
171
172
173
174
- name: experiment-import
  configFile: test/config/nnictl_experiment/sklearn-classification.yml
  validator:
    class: ImportValidator
    kwargs:
      import_data_file_path: config/nnictl_experiment/test_import.json

chicm-ms's avatar
chicm-ms committed
175
176
177
178
179
180
181
182
183
184
185
- name: foreground
  configFile: test/config/examples/sklearn-regression.yml
  launchCommand: python3 nni_test/nnitest/foreground.py --config $configFile --timeout 45
  stopCommand:
  experimentStatusCheck: False
  platform: linux darwin

# Experiment resume test part 1
- name: nnictl-resume-1
  configFile: test/config/examples/sklearn-regression.yml
  setExperimentIdtoVar: $resumeExpId
186
  # for subfolder in codedir test
187
  launchCommand: python3 -c "import os; os.makedirs('../examples/trials/sklearn/regression/subfolder', exist_ok=True); open('../examples/trials/sklearn/regression/subfolder/subfile', 'a').close()" && nnictl create --config $configFile --debug
chicm-ms's avatar
chicm-ms committed
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

# Experiment resume test part 2
- name: nnictl-resume-2
  configFile: test/config/examples/sklearn-regression.yml
  launchCommand: nnictl resume $resumeExpId

# Experiment view test
- name: nnictl-view
  configFile: test/config/examples/sklearn-regression.yml
  launchCommand: nnictl view $resumeExpId
  experimentStatusCheck: False

- name: multi-thread
  configFile: test/config/multi_thread/config.yml


#########################################################################
# nni assessor test
#########################################################################
- name: assessor-curvefitting
  configFile: test/config/assessors/curvefitting.yml

- name: assessor-medianstop
  configFile: test/config/assessors/medianstop.yml

#########################################################################
# nni tuners test
#########################################################################
liuzhe-lz's avatar
liuzhe-lz committed
216
217
#- name: tuner-annel
#  configFile: test/config/tuners/anneal.yml
chicm-ms's avatar
chicm-ms committed
218

liuzhe-lz's avatar
liuzhe-lz committed
219
220
#- name: tuner-evolution
#  configFile: test/config/tuners/evolution.yml
chicm-ms's avatar
chicm-ms committed
221

liuzhe-lz's avatar
liuzhe-lz committed
222
223
#- name: tuner-random
#  configFile: test/config/tuners/random.yml
chicm-ms's avatar
chicm-ms committed
224

liuzhe-lz's avatar
liuzhe-lz committed
225
226
227
#- name: tuner-smac
#  configFile: test/config/tuners/smac.yml
#  platform: linux darwin
chicm-ms's avatar
chicm-ms committed
228

liuzhe-lz's avatar
liuzhe-lz committed
229
230
#- name: tuner-tpe
#  configFile: test/config/tuners/tpe.yml
chicm-ms's avatar
chicm-ms committed
231

liuzhe-lz's avatar
liuzhe-lz committed
232
233
#- name: tuner-batch
#  configFile: test/config/tuners/batch.yml
chicm-ms's avatar
chicm-ms committed
234

liuzhe-lz's avatar
liuzhe-lz committed
235
236
237
#- name: tuner-bohb
#  configFile: test/config/tuners/bohb.yml
#  platform: linux darwin
chicm-ms's avatar
chicm-ms committed
238

liuzhe-lz's avatar
liuzhe-lz committed
239
240
#- name: tuner-gp
#  configFile: test/config/tuners/gp.yml
chicm-ms's avatar
chicm-ms committed
241

liuzhe-lz's avatar
liuzhe-lz committed
242
243
#- name: tuner-grid
#  configFile: test/config/tuners/gridsearch.yml
chicm-ms's avatar
chicm-ms committed
244

liuzhe-lz's avatar
liuzhe-lz committed
245
246
#- name: tuner-hyperband
#  configFile: test/config/tuners/hyperband.yml
chicm-ms's avatar
chicm-ms committed
247

liuzhe-lz's avatar
liuzhe-lz committed
248
249
#- name: tuner-metis
#  configFile: test/config/tuners/metis.yml
250

251
252
253
- name: tuner-regularized_evolution
  configFile: test/config/tuners/regularized_evolution_tuner.yml

254
255
256
257
258
#########################################################################
# nni customized-tuners test
#########################################################################
- name: customized-tuners-demotuner
  configFile: test/config/customized_tuners/demotuner-sklearn-classification.yml