()
| 115 | |
| 116 | |
| 117 | def get_data(): |
| 118 | train = BatchData(dataset.Mnist('train'), 128) |
| 119 | test = BatchData(dataset.Mnist('test'), 256, remainder=True) |
| 120 | return train, test |
| 121 | |
| 122 | |
| 123 | if __name__ == '__main__': |
no test coverage detected
searching dependent graphs…