Skip to content

Commit

Permalink
removed dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz Freidank committed Oct 17, 2017
1 parent f339bff commit 77d912a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pysgmcmc/stepsize_schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def __next__(self):
next_stepsize : float
Next stepsize to use according to this schedule.
"""
raise NotImplementedError()

def __iter__(self):
return self
Expand All @@ -31,8 +30,8 @@ def update(self, *args, **kwargs):
Information may e.g. include cost values for the last step size
used, effective sample sizes of a sampler, values of other
hyperparameters etc.
"""
raise NotImplementedError()


class ConstantStepsizeSchedule(StepsizeSchedule):
Expand Down

0 comments on commit 77d912a

Please sign in to comment.