feat: expose hyper tuning module in model_selection (#179)

* feat: expose hyper tuning module in model_selection

* Move to a folder

Co-authored-by: Luis Moreno <morenol@users.noreply.github.com>
This commit is contained in:
morenol
2022-10-01 12:47:56 -05:00
committed by GitHub
parent 9c59e37a0f
commit 3c62686d6e
3 changed files with 65 additions and 49 deletions
+2
View File
@@ -110,8 +110,10 @@ use crate::math::num::RealNumber;
use crate::rand::get_rng_impl;
use rand::seq::SliceRandom;
pub(crate) mod hyper_tuning;
pub(crate) mod kfold;
pub use hyper_tuning::{grid_search, GridSearchResult};
pub use kfold::{KFold, KFoldIter};
/// An interface for the K-Folds cross-validator