4ca83a3646f5e83a3bd104c408acdb906dd4952c,src/models.py,,simple_CNN,#Any#Any#,8
Before Change
model.add(Dropout(.5))
model.add(Flatten())
model.add(Dense(1028))
model.add(Activation("relu"))
model.add(Dropout(0.5))
model.add(Dense(1028))
After Change
padding="same"))
model.add(Dropout(.5))
model.add(Convolution2D(filters=64, kernel_size=(3, 3), padding="same"))
model.add(BatchNormalization())
model.add(Activation("relu"))
model.add(AveragePooling2D(pool_size=(3, 3), strides=(2, 2),
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: oarriaga/face_classification
Commit Name: 4ca83a3646f5e83a3bd104c408acdb906dd4952c
Time: 2017-05-05
Author: arriaga.camargo@gmail.com
File Name: src/models.py
Class Name:
Method Name: simple_CNN
Project Name: oarriaga/face_classification
Commit Name: 95768fe65dae1b92319a591e2358925b91cb3776
Time: 2017-05-19
Author: arriaga.camargo@gmail.com
File Name: src/models.py
Class Name:
Method Name: simple_CNN
Project Name: tensorflow/cleverhans
Commit Name: f3a561d2607d05cf3177d2f7a4c9783033e02c76
Time: 2016-11-07
Author: goodfellow.ian@gmail.com
File Name: cleverhans/utils_mnist.py
Class Name:
Method Name: model_mnist