Skip to content

Commit

Permalink
Fixed another fstring bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Stone committed Sep 12, 2024
1 parent 76112ab commit 0deb8b1
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 0deb8b1

Please sign in to comment.