()
| 210 | |
| 211 | |
| 212 | def get_data(): |
| 213 | ds = ConcatData([dataset.Mnist('train'), dataset.Mnist('test')]) |
| 214 | ds = BatchData(ds, BATCH) |
| 215 | ds = MapData(ds, lambda dp: [dp[0]]) # only use the image |
| 216 | return ds |
| 217 | |
| 218 | |
| 219 | def sample(model_path): |
no test coverage detected
searching dependent graphs…