Unable to pass reduce, size_average parameters in loss functions

unable to explicitly pass reduce and size_average in loss function, what am I doing wrong?

Which version of Pytorch are you using? The reduce argument was introduced in v0.3 as far as I know.

I updated, still I am getting the same error. Now?

You have to define the reduce and size_average param when creating the loss:

loss = nn.MSELoss(size_average=True, reduce=False)

Sorry, haven’t noticed this issue in your first post.

1 Like

oh you’re right, sorry!