(labels, logits)
| 102 | |
| 103 | @staticmethod |
| 104 | def ms_error(labels, logits): |
| 105 | return tf.square(tf.subtract(labels, logits)) |
| 106 | |
| 107 | def _weight_variable(self, shape, name='weights'): |
| 108 | initializer = tf.random_normal_initializer(mean=0., stddev=1.,) |
nothing calls this directly
no outgoing calls
no test coverage detected