Skip to content

Commit

Permalink
Use dash in args for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
DanWaxman committed Nov 28, 2023
1 parent 9911fc8 commit b5b982e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/gp.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def main(args):
type=str,
choices=["median", "feasible", "value", "uniform", "sample"],
)
parser.add_argument("--no_cholesky", dest="use_cholesky", action="store_false")
parser.add_argument("--no-cholesky", dest="use_cholesky", action="store_false")
args = parser.parse_args()

numpyro.set_platform(args.device)
Expand Down

0 comments on commit b5b982e

Please sign in to comment.