Skip to content

Commit cadc2e9

Browse files
committed
use gpu: True as default for model training
1 parent d4cc067 commit cadc2e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

psiflow/execution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ def from_config(
488488
)
489489
model_training = ModelTraining.from_config(
490490
container=container,
491-
**kwargs.pop("ModelTraining", {}),
491+
**kwargs.pop("ModelTraining", {'gpu': True}), # avoid triggering assertion
492492
)
493493
reference_evaluations = [] # reference evaluations might be class specific
494494
for key in list(kwargs.keys()):

0 commit comments

Comments
 (0)