ecaf07668a288a2edfe49801e31b19047c9d1d98,hypergan/configurable_component.py,ConfigurableComponent,layer_resize_conv,#ConfigurableComponent#Any#Any#Any#,621

Before Change


        activation_s = options.activation or self.ops.config_option("activation")
        activation = self.ops.lookup(activation_s)

        stride = options.stride or self.ops.config_option("stride", [1,1])
        fltr = options.filter or self.ops.config_option("filter", [5,5])
        if type(fltr) == type(""):
            fltr=[int(fltr), int(fltr)]
        depth = int(args[0])
        initializer = None // default to global

After Change


        activation_s = options.activation or self.ops.config_option("activation")
        activation = self.ops.lookup(activation_s)

        _, fltr, _ = self.get_conv_options(config, options)
        stride = [1, 1]
        if type(fltr) == type(""):
            fltr=[int(fltr), int(fltr)]
        depth = int(args[0])
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 12

Instances


Project Name: HyperGAN/HyperGAN
Commit Name: ecaf07668a288a2edfe49801e31b19047c9d1d98
Time: 2019-08-22
Author: martyn@255bits.com
File Name: hypergan/configurable_component.py
Class Name: ConfigurableComponent
Method Name: layer_resize_conv


Project Name: HyperGAN/HyperGAN
Commit Name: ecaf07668a288a2edfe49801e31b19047c9d1d98
Time: 2019-08-22
Author: martyn@255bits.com
File Name: hypergan/configurable_component.py
Class Name: ConfigurableComponent
Method Name: layer_conv_reshape


Project Name: HyperGAN/HyperGAN
Commit Name: ecaf07668a288a2edfe49801e31b19047c9d1d98
Time: 2019-08-22
Author: martyn@255bits.com
File Name: hypergan/configurable_component.py
Class Name: ConfigurableComponent
Method Name: layer_resize_conv


Project Name: HyperGAN/HyperGAN
Commit Name: ecaf07668a288a2edfe49801e31b19047c9d1d98
Time: 2019-08-22
Author: martyn@255bits.com
File Name: hypergan/configurable_component.py
Class Name: ConfigurableComponent
Method Name: layer_deconv