Skip to content

Commit

Permalink
Fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
takuseno committed Jul 16, 2023
1 parent b9d498e commit eaf9219
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions d3rlpy/algos/qlearning/explorers.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class ConstantEpsilonGreedy(Explorer):
Args:
epsilon (float): the constant :math:`\\epsilon`.
"""

_epsilon: float
Expand All @@ -64,7 +63,6 @@ class LinearDecayEpsilonGreedy(Explorer):
start_epsilon (float): Initial :math:`\\epsilon`.
end_epsilon (float): Final :math:`\\epsilon`.
duration (int): Scheduling duration.
"""

_start_epsilon: float
Expand Down
1 change: 0 additions & 1 deletion d3rlpy/dataset/transition_pickers.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def __call__(self, episode: EpisodeBase, index: int) -> Transition:
Returns:
Transition.
"""
raise NotImplementedError

Expand Down

0 comments on commit eaf9219

Please sign in to comment.