Exemple #1
0
 def testConstructWithTunerFn(self):
     tuner = component.Tuner(examples=self.examples,
                             transform_graph=self.transform_graph,
                             train_args=self.train_args,
                             eval_args=self.eval_args,
                             tuner_fn='path.to.tuner_fn')
     self._verify_output(tuner)
Exemple #2
0
 def testConstructDuplicateUserModule(self):
     with self.assertRaises(ValueError):
         _ = component.Tuner(examples=self.examples,
                             schema=self.schema,
                             train_args=self.train_args,
                             eval_args=self.eval_args,
                             module_file='/path/to/module/file',
                             tuner_fn='path.to.tuner_fn')
Exemple #3
0
 def testConstructWithModuleFile(self):
     tuner = component.Tuner(examples=self.examples,
                             schema=self.schema,
                             train_args=self.train_args,
                             eval_args=self.eval_args,
                             tune_args=self.tune_args,
                             module_file='/path/to/module/file')
     self._verify_output(tuner)
Exemple #4
0
 def testConstructWithCustomConfig(self):
     tuner = component.Tuner(examples=self.examples,
                             transform_graph=self.transform_graph,
                             train_args=self.train_args,
                             eval_args=self.eval_args,
                             module_file='/path/to/module/file',
                             custom_config={'key': 'value'})
     self._verify_output(tuner)