Skip to content

Commit

Permalink
Merge pull request #58 from MSDLLCpapers/main
Browse files Browse the repository at this point in the history
Fixed another fstring bug
  • Loading branch information
kstone40 authored Sep 12, 2024
2 parents f098d38 + 0deb8b1 commit 70d5a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion obsidian/optimizer/bayesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def fit(self,
print(f'{self.surrogate_type[i]} model has been fit to data'
+ f' with an R2-train-score of: {self.surrogate[i].r2_score:.3g}'
+ (f' and a training-loss of: {self.surrogate[i].loss:.3g}' if self.verbose >= 2 else '')
+ ' for response: {self.y_names[i]}')
+ f' for response: {self.y_names[i]}')
return

def save_state(self) -> dict:
Expand Down

0 comments on commit 70d5a26

Please sign in to comment.