Skip to content

Commit 89a0c46

Browse files
committed
Move to a folder
1 parent 5c3e81c commit 89a0c46

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/model_selection/hyper_tuning.rs renamed to src/model_selection/hyper_tuning/grid_search.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::{
55
math::num::RealNumber,
66
};
77

8-
use super::{cross_validate, BaseKFold, CrossValidationResult};
8+
use crate::model_selection::{cross_validate, BaseKFold, CrossValidationResult};
99

1010
/// grid search results.
1111
#[derive(Clone, Debug)]
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
mod grid_search;
2+
pub use grid_search::{grid_search, GridSearchResult};

0 commit comments

Comments
 (0)