Skip to content

Commit

Permalink
fix sample code
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeep-iitr authored Feb 21, 2025
1 parent f203ea6 commit 2735529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def objective(x):
tuner = Tuner(param_space, objective)
results = tuner.minimize()

print(f'Optimal value of parameters: {results["best_params"]} and objective: {results["best_objective"]}')```
print(f'Optimal value of parameters: {results["best_params"]} and objective: {results["best_objective"]}')
# => Optimal value of parameters: {'x': 0} and objective: 0
```

Expand Down

0 comments on commit 2735529

Please sign in to comment.