diff --git a/.idea/workspace.xml b/.idea/workspace.xml index ee4b821..c388adc 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -5,9 +5,7 @@ - - - + @@ -674,16 +672,6 @@ - - - - - - - - - - @@ -749,5 +737,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/vgg_16.3.py b/vgg_16.3.py index 8c311a9..3674397 100644 --- a/vgg_16.3.py +++ b/vgg_16.3.py @@ -95,7 +95,7 @@ # whether to retrain model from scratch or use saved model init = True -model_name = "vgg_16.3.05" + model_label + "." + str(dataset) + str(version) +model_name = "vgg_16.3.06" + model_label + "." + str(dataset) + str(version) # vgg_19.01 - attempting to recreate vgg 19 architecture # vgg_16.02 - went to vgg 16 architecture, reducing units in fc layers # vgg_16.2.01 - changing first conv layers to stride 2 to get dimensions down to reasonable size @@ -105,6 +105,7 @@ # vgg_16.3.03 - tweaks to inputs # vgg_16.3.04 - increased x-entropy weighting # vgg_16.3.05 - not centering input data, just scaling it +# vgg_16.3.06 - added online data augmentation, updated training code with graph.as_default(): training = tf.placeholder(dtype=tf.bool, name="is_training")