Printing and Slicing
Transforms pretty-print in IPython:
>>> add
add:
   def add(x, y):
       return x + y
>>> add / identity >> add >> MinusX(100)
Compose:
      │└──────────────┐
      │               │
      ▼ (x, y)        ▼ args
   0: add           / padl.Identity()
      │
      ▼ (x, y)
   1: add          
      │
      ▼ y
   2: MinusX(x=100)
Sub-transforms of Pipelines can be accessed via getitem:
>>> (t1 >> t2 >> t3)[0] == t1
True
Slices work, too:
>>> (t1 >> t2 >> t3)[1:] == t2 >> t3
True
This can be used with complex, nested Pipelines:
>>> (t1 >> t2 + t3 + t4 >> t5)[1][:2] == t2 + t3
True
Read in the next section how PyTorch Modules and Transforms work together.