@fmassa does this still work? It seems that nn.L1Loss
requires a target - giving the error TypeError: forward() missing 1 required positional argument: 'target'
example:
xx = nn.Parameter(torch.from_numpy(np.ones((3,3))))
l1_crit = nn.L1Loss()
l1_crit(xx)