Skip to content
Snippets Groups Projects
Unverified Commit f8d2665c authored by Shamith Achanta's avatar Shamith Achanta Committed by GitHub
Browse files

Update README.md

parent 3621e5ee
No related branches found
No related tags found
No related merge requests found
...@@ -248,6 +248,15 @@ new_optimizer = BayesianOptimization( ...@@ -248,6 +248,15 @@ new_optimizer = BayesianOptimization(
load_logs(new_optimizer, logs=["./logs.json"]); load_logs(new_optimizer, logs=["./logs.json"]);
``` ```
## 5. Plotting
For plotting the f(x) aganist the number of evaluations
```python
from bayes_opt.plotter import JSONPlotter
JSONPlotter(log_file, plot_file, func_name)
```
## Next Steps ## Next Steps
This introduction covered the most basic functionality of the package. Checkout the [basic-tour](https://github.com/fmfn/BayesianOptimization/blob/master/examples/basic-tour.ipynb) and [advanced-tour](https://github.com/fmfn/BayesianOptimization/blob/master/examples/advanced-tour.ipynb) notebooks in the example folder, where you will find detailed explanations and other more advanced functionality. Also, browse the examples folder for implementation tips and ideas. This introduction covered the most basic functionality of the package. Checkout the [basic-tour](https://github.com/fmfn/BayesianOptimization/blob/master/examples/basic-tour.ipynb) and [advanced-tour](https://github.com/fmfn/BayesianOptimization/blob/master/examples/advanced-tour.ipynb) notebooks in the example folder, where you will find detailed explanations and other more advanced functionality. Also, browse the examples folder for implementation tips and ideas.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment