(dp)
| 195 | # stack the two digits into two channels, and label it with the sum |
| 196 | |
| 197 | def mapper(dp): |
| 198 | return [np.stack([dp[0], dp[2]], axis=2), dp[1] + dp[3]] |
| 199 | ds = MapData(ds, dp) |
| 200 | ds = BatchData(ds, 128) |
| 201 | return ds |
no outgoing calls
no test coverage detected
searching dependent graphs…