6a400eaccfa5e37e09dab9c4ad1ea282422bbbd4,ISR/models/cut_vgg19.py,Cut_VGG19,_cut_vgg,#Cut_VGG19#,33
Before Change
collect.append(vgg.layers[i].output)
vgg.outputs = collect
hr = Input(shape=self.input_shape)
features = vgg(hr)
self.model = Model(inputs=hr, outputs=features)
self.model.name = "feature_extractor"
self.name = "vgg19" // used in weights naming
After Change
vgg = VGG19(weights="imagenet", include_top=False, input_shape=self.input_shape)
vgg.trainable = False
outputs = [vgg.layers[i].output for i in self.layers_to_extract]
self.model = Model([vgg.input], outputs)
self.model._name = "feature_extractor"
self.name = "vgg19" // used in weights naming
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: idealo/image-super-resolution
Commit Name: 6a400eaccfa5e37e09dab9c4ad1ea282422bbbd4
Time: 2020-01-07
Author: testadicardi@gmail.com
File Name: ISR/models/cut_vgg19.py
Class Name: Cut_VGG19
Method Name: _cut_vgg
Project Name: NTMC-Community/MatchZoo
Commit Name: 478d2f388dc65736b5d67f3560328904210ef1a1
Time: 2018-12-01
Author: i@uduse.com
File Name: matchzoo/models/arci_model.py
Class Name: ArcIModel
Method Name: build
Project Name: eriklindernoren/Keras-GAN
Commit Name: 3cba7783cb805459d26918be7a56b0e8b8fd3bc9
Time: 2017-07-17
Author: eriklindernoren@live.se
File Name: adversarial_autoencoder.py
Class Name: AdversarialAutoencoder
Method Name: build_discriminator