diff --git a/example.odt b/example.odt new file mode 100644 index 0000000..b620efc Binary files /dev/null and b/example.odt differ diff --git a/main.py b/main.py index 67cb787..e5c0e4b 100644 --- a/main.py +++ b/main.py @@ -50,15 +50,13 @@ test_data = test_data.prefetch(buffer_size=AUTOTUNE) #Data Augmentation data_augmentation = tf.keras.Sequential([ - tf.keras.layers.RandomFlip('horisontal'), + tf.keras.layers.RandomFlip('horizontal'), tf.keras.layers.RandomRotation(0.2) ]) -#Rescale Pixel Values +#Preprocessing preprocess_input = tf.keras.applications.mobilenet_v3.preprocess_input -rescale = tf.keras.layers.Rescaling(1./127.5, offset=-1) - #Create Base Model From MobileNetV3 IMG_SHAPE = IMG_SIZE + (3,) base_model = tf.keras.applications.MobileNetV3Large( diff --git a/report.odt b/report.odt index b620efc..58f965e 100644 Binary files a/report.odt and b/report.odt differ diff --git a/test.py b/test.py new file mode 100644 index 0000000..6e79279 --- /dev/null +++ b/test.py @@ -0,0 +1,4 @@ +#Load model +#Load test data +#Test +#Print results