Exemple #1
0
 def test_train_without_center_normalizer(self):
     args = Attrs()
     args.data_preprocessing = [
         DataRangeNormalizer.__name__,
         ScaleToHeightProcessor.__name__,
         FinalPreparation.__name__,
     ]
     with tempfile.TemporaryDirectory() as d:
         args.output_dir = d
         run(args)
 def test_simple_train(self):
     args = Attrs()
     run(args)
Exemple #3
0
 def test_simple_train(self):
     args = Attrs()
     with tempfile.TemporaryDirectory() as d:
         args.output_dir = d
         run(args)
Exemple #4
0
 def test_simple_train(self):
     args = Attrs()
     run(args)