Because this: ```python actions = model(input).max(1).indices ``` looks much better than this: ```python actions = model(input).max(1)[1] ```