nn.softmax dla czystego klasyfikatora sconvoultional

>>> m = nn.Softmax(dim=1)
>>> input = torch.randn(2, 3)
>>> output = m(input)
Eager Elk