Skip to content

Commit

Permalink
readme edit
Browse files Browse the repository at this point in the history
  • Loading branch information
ches-001 committed Jun 1, 2023
1 parent 087a148 commit 4277715
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,10 @@ After running this, we can retrieve the best optuna trial and build a model out
```python
sampled_model = metatune.build_sampled_model(study.best_trial)
```
**Note** that the models returned are purely sci-kit-learn models, thus the reason the regular `fit(...)` and `predict(...)` methods can be called on them.
**NOTE** that the models returned are purely sci-kit-learn models, thus the reason the regular `fit(...)` and `predict(...)` methods can be called on them.

<br>

**NOTE:** A thing to note is that for large datasets, hyperparameter search ought to be used on a subset of the data rather than the entire dataset. The reason for this being that the aim of hyperparameter tuning is not fit all of the data, but rather to sample the parameters that best model the data. After tuning, you can instantiate the sampled model with the corresponding sampled parameters and fine-tune the model on the large dataset, this way you avoid the unnecessary computation required to model the entirety of the available dataset.

<br>
Expand Down

0 comments on commit 4277715

Please sign in to comment.