Skip to content

Commit

Permalink
Decrease default lr and add to docs on steps
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Mar 2, 2023
1 parent 7f45464 commit f8bbbbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chronumental/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ def get_parser():
parser.add_argument('--steps',
default=1000,
type=int,
help="Number of steps to use for the SVI")
help="Number of steps to use for the SVI. Increasing this number will make runtime increase, but yield more accurate results.")

parser.add_argument('--lr',
default=0.1,
default=0.05,
type=float,
help="Adam learning rate")

Expand Down

0 comments on commit f8bbbbe

Please sign in to comment.