MCPcopy Index your code
hub / github.com/tdeboissiere/DeepLearningImplementations / Model

Class Model

BEGAN/src/model/models.py:9–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7
8
9class Model(object):
10
11 def __init__(self, name):
12 self.name = name
13
14 def get_trainable_variables(self):
15 t_vars = tf.trainable_variables()
16 t_vars_model = {v.name: v for v in t_vars if self.name in v.name}
17 return t_vars_model
18
19
20class Generator(Model):

Callers 15

generator_upsamplingFunction · 0.90
generator_deconvFunction · 0.90
DCGAN_discriminatorFunction · 0.90
DCGANFunction · 0.90
DenseNetFunction · 0.90
generator_unet_deconvFunction · 0.90
DCGAN_discriminatorFunction · 0.90
DCGANFunction · 0.90
colorfulFunction · 0.90
FCNFunction · 0.90
CNNFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected