()
| 309 | class CenterModel(EmbeddingModel): |
| 310 | @staticmethod |
| 311 | def get_data(): |
| 312 | ds = dataset.Mnist('train') |
| 313 | ds = BatchData(ds, 128) |
| 314 | return ds |
| 315 | |
| 316 | def inputs(self): |
| 317 | return [tf.TensorSpec((None, 28, 28), tf.float32, 'input'), |
no test coverage detected