Train a mini-batch.
(self)
| 205 | return zip(self._validation_metrics, metric_sums) |
| 206 | |
| 207 | def train_on_batch(self): |
| 208 | """Train a mini-batch.""" |
| 209 | self._sess.run(self._train_op) |
| 210 | |
| 211 | def train_and_validate_to_end(self, validate_step_size=50): |
| 212 | """A helper function that shows how to train and validate a model at the same time. |
no outgoing calls
no test coverage detected