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


    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),
                                                padding="same"))

    model.add(Convolution2D(filters=32, kernel_size=(3, 3), padding="same"))
    model.add(BatchNormalization())
    model.add(Activation("relu"))
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

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: modAL-python/modAL
Commit Name: b673a26860c1598e7ef66a301743a2ff1d96b61f
Time: 2018-04-16
Author: theodore.danka@gmail.com
File Name: examples/keras_integration.py
Class Name:
Method Name: create_keras_model


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