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
CriterionBase defines an estimate method, but it may not be used.
TemperedCriterion doesn't implement it at all (which causes a pylint warning)
StrictLocalizingCriterion implements it by simply forwarding it to the compute function:
defestimate(self, r_src: Rank, o_src: list, *args) ->float:
"""Estimate is compute because all information is local for this criterion."""returnself.compute(r_src, o_src, *args)
Investigate if we can just remove the estimate method entirely.
The text was updated successfully, but these errors were encountered:
As mentioned in PR #546
CriterionBase
defines anestimate
method, but it may not be used.TemperedCriterion
doesn't implement it at all (which causes a pylint warning)StrictLocalizingCriterion
implements it by simply forwarding it to the compute function:Investigate if we can just remove the
estimate
method entirely.The text was updated successfully, but these errors were encountered: