()
| 93 | |
| 94 | |
| 95 | def get_data(): |
| 96 | train = BatchData(dataset.Mnist('train'), 128) |
| 97 | test = BatchData(dataset.Mnist('test'), 256, remainder=True) |
| 98 | return train, test |
| 99 | |
| 100 | |
| 101 | if __name__ == '__main__': |
no test coverage detected
searching dependent graphs…