(self, value, tag)
| 164 | |
| 165 | # used to add summary in tensorboard |
| 166 | def _add_layer_summary(self, value, tag): |
| 167 | tf.summary.scalar('%s/fraction_of_zero_values' % tag, |
| 168 | tf.nn.zero_fraction(value)) |
| 169 | tf.summary.histogram('%s/activation' % tag, value) |
| 170 | |
| 171 | def _make_scope(self, name, bf16, part): |
| 172 | if(bf16): |
no test coverage detected