コード例 #1
0
ファイル: test_builtin_tuners.py プロジェクト: pkuyym/nni
 def test_evolution(self):
     # Needs enough population size, otherwise it will throw a runtime error
     tuner_fn = lambda: EvolutionTuner(population_size=100)
     self.search_space_test_all(tuner_fn)
     self.import_data_test(tuner_fn)
コード例 #2
0
ファイル: test_builtin_tuners.py プロジェクト: zsjtoby/nni
 def test_evolution(self):
     # Needs enough population size, otherwise it will throw a runtime error
     self.search_space_test_all(lambda: EvolutionTuner(population_size=100))