You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If your ECE is going up, try simply increasing max_iter on line 60 of temperature_scaling.py
before: optimizer = optim.LBFGS([self.temperature], lr=0.01, max_iter=50)
after: optimizer = optim.LBFGS([self.temperature], lr=0.01, max_iter=100)
The text was updated successfully, but these errors were encountered:
If your ECE is going up, try simply increasing
max_iter
on line 60 oftemperature_scaling.py
before:
optimizer = optim.LBFGS([self.temperature], lr=0.01, max_iter=50)
after:
optimizer = optim.LBFGS([self.temperature], lr=0.01, max_iter=100)
The text was updated successfully, but these errors were encountered: