Skip to content

Commit c5161cf

Browse files
committed
update readme with
1 parent 1d312c2 commit c5161cf

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,11 @@ As before we can inspect the important features by inspesting the `fitted_params
7272
```julia
7373
fitted_parms(self_tuning_rfe_mach).features_left == [:x1, :x2, :x3, :x4, :x5]
7474
```
75+
and call `predict` on the tuned model machine as shown below
76+
```julia
77+
Xnew = MLJ.table(rand(rng, 50, 10)) # create test data
78+
predict(self_tuning_rfe_mach, Xnew)
79+
```
80+
In this case, prediction is done using the best recursive feature elimination model gotten from the tuning process above.
81+
7582
For more information various cross-validation strategies and `TunedModel` see [MLJ Documentation](https://alan-turing-institute.github.io/MLJ.jl/dev/)

0 commit comments

Comments
 (0)