コード例 #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)
コード例 #2
0
 def test_simple_train(self):
     args = Attrs()
     run(args)
コード例 #3
0
 def test_simple_train(self):
     args = Attrs()
     with tempfile.TemporaryDirectory() as d:
         args.output_dir = d
         run(args)
コード例 #4
0
ファイル: test_simple_train.py プロジェクト: AIRob/calamari
 def test_simple_train(self):
     args = Attrs()
     run(args)