Skip to content

Commit

Permalink
Fix bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
rousseab committed Oct 19, 2024
1 parent 9623653 commit 0e10484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crystal_diffusion/sample_diffusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def main(args: Optional[Any] = None):
"--output", required=True, help="path to outputs - will store files here"
)
parser.add_argument(
"--device", default="gpu", help="Device to use. Defaults to cuda."
"--device", default="cuda", help="Device to use. Defaults to cuda."
)
args = parser.parse_args(args)
if os.path.exists(args.output):
Expand Down

0 comments on commit 0e10484

Please sign in to comment.