Skip to content

Commit 266827e

Browse files
committed
Remove determistic argument from Trainer
1 parent 19532c4 commit 266827e

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

pad_experiments.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -443,8 +443,7 @@ def main():
443443
resume_from_checkpoint=resume_from_checkpoint,
444444
fast_dev_run=args.devtest,
445445
strategy='ddp' if args.num_gpus > 1 else None,
446-
plugins=[my_ddp],
447-
deterministic=True
446+
plugins=[my_ddp]
448447
)
449448

450449
# Train model
@@ -486,8 +485,7 @@ def main():
486485
max_epochs=2,
487486
precision=32,
488487
strategy='ddp' if args.num_gpus > 1 else None,
489-
plugins=[my_ddp],
490-
deterministic=True
488+
plugins=[my_ddp]
491489
)
492490

493491
# Test model

0 commit comments

Comments
 (0)