Skip to content

Commit

Permalink
missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
JenniferHem committed Sep 4, 2024
1 parent fdb1d31 commit eef3d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion molpipeline/estimators/chemprop/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def __init__(
model = MPNN(message_passing=bond_encoder, agg=agg, predictor=predictor)
if not hasattr(model.predictor, "n_classes"):
raise AttributeError(
"The predictor does not have an attribute n_classes.Please use a MulticlassClassificationFFN predictor or define n_classes."
"The predictor does not have an attribute n_classes. Please use a MulticlassClassificationFFN predictor or define n_classes."
)
if n_classes != model.predictor.n_classes:
raise ValueError(
Expand Down

0 comments on commit eef3d22

Please sign in to comment.