1
0
Fork 0
mirror of https://github.com/prise6/smart-iss-posts synced 2024-05-03 14:13:10 +02:00

fix some code

This commit is contained in:
Francois Vieille 2019-03-11 22:33:09 +01:00
parent fe33b892bd
commit af95fe85f2
2 changed files with 4 additions and 1 deletions

View file

@ -18,7 +18,7 @@ class ImageDataGeneratorWrapper:
def image_data_generator(self, config): def image_data_generator(self, config):
self.datagen = ImageDataGenerator( self.datagen = ImageDataGenerator(
rescale = 1./255 rescale = 1./255
) )
return self return self

View file

@ -0,0 +1,3 @@
from .SimpleConvAutoEncoder import SimpleConvAutoEncoder
from .SimpleAutoEncoder import SimpleAutoEncoder