| 11 | |
| 12 | |
| 13 | class ComposeTransforms: |
| 14 | def __init__(self, trans): |
| 15 | self.trans = trans |
| 16 | |
| 17 | def __call__(self, x): |
| 18 | for t in self.trans: |
| 19 | x = t(x) |
| 20 | return x |
| 21 | |
| 22 | if __name__ == "__main__": |
| 23 | X_train, Y_train, X_test, Y_test = fetch_mnist() |
no outgoing calls
no test coverage detected
searching dependent graphs…