Skip to content

Commit

Permalink
Merge baf4f92 into 6027634
Browse files Browse the repository at this point in the history
  • Loading branch information
muupan committed Nov 14, 2017
2 parents 6027634 + baf4f92 commit c1c9bc3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion chainerrl/explorers/additive_gaussian.py
Expand Up @@ -12,7 +12,13 @@


class AdditiveGaussian(explorer.Explorer):
"""Additive Gaussian noise"""
"""Additive Gaussian noise to actions.
Each action must be numpy.ndarray.
Args:
scale (float or array_like of floats): Scale parameter.
"""

def __init__(self, scale):
self.scale = scale
Expand Down

0 comments on commit c1c9bc3

Please sign in to comment.