Module is an abstract class which defines fundamental methods necessary for a Layer.
doc: https://github.com/torch/nn/blob/master/doc/module.md
Module class
variables in Module:
output: Tensor, the ouput computed from last call offorward(input)gradInput: Tensor, gradient wrt input of module, computed from last …

