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)
def test_simple_train(self): args = Attrs() with tempfile.TemporaryDirectory() as d: args.output_dir = d run(args)