(self)
| 14 | self._build_model() |
| 15 | |
| 16 | def test_2(self): |
| 17 | self._build_model( |
| 18 | dim_z=10, |
| 19 | output_layer_type='StackedModulatedLinearLayers', |
| 20 | feed_z_to_decode_rnn=True, |
| 21 | num_output_layers=3, |
| 22 | dim_output_layers=128, |
| 23 | output_layer_nonlinearity='relu', |
| 24 | output_layer_dropout_prob=0, |
| 25 | output_layer_normalize=True, |
| 26 | output_layer_normalize_first=True, |
| 27 | output_layer_init_freq_first_layer=1., |
| 28 | output_layer_init_freq_other_layer=25., |
| 29 | # style mapping layer |
| 30 | num_mapping_layers=4, |
| 31 | dim_mapping_layers=256, |
| 32 | mapping_layer_nonlinearity='silu', |
| 33 | mapping_layer_dropout_prob=0., |
| 34 | ) |
| 35 | |
| 36 | |
| 37 | def test_3(self): |
nothing calls this directly
no test coverage detected