Skip to content

Commit

Permalink
modify init learning rate
Browse files Browse the repository at this point in the history
  • Loading branch information
usaito committed Apr 2, 2022
1 parent a8a3278 commit 0dda232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions obp/policy/offline.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ class NNPolicyLearner(BaseOfflinePolicyLearner):
solver: str = "adam"
alpha: float = 0.0001
batch_size: Union[int, str] = "auto"
learning_rate_init: float = 0.0001
learning_rate_init: float = 0.001
max_iter: int = 200
shuffle: bool = True
random_state: Optional[int] = None
Expand Down Expand Up @@ -1477,7 +1477,7 @@ class QFuncEstimator:
solver: str = "adam"
alpha: float = 0.0001
batch_size: Union[int, str] = "auto"
learning_rate_init: float = 0.0001
learning_rate_init: float = 0.001
max_iter: int = 200
shuffle: bool = True
random_state: Optional[int] = None
Expand Down

0 comments on commit 0dda232

Please sign in to comment.