How do you move activation functions into forward() method (of PyTorch nn.Module)?
a) Define them within the forward() method
b) Define them within the init() method
c) Define them as separate modules
d) Define them within the backward() method