Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyangkang committed Sep 20, 2024
1 parent a04cc7b commit ce58cbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_model_selection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from stemflow.model_selection import ST_CV, ST_train_test_split, ST_Kfold
from stemflow.model_selection import ST_CV, ST_train_test_split, ST_KFold

from .set_up_data import set_up_data

Expand All @@ -20,8 +20,8 @@ def test_CV():
assert len(X_train) > 0 and len(X_test) > 0 and len(y_train) > 0 and len(y_test) > 0


def test_ST_Kfold():
ST_KFold_generator = ST_Kfold(n_splits=3,
def test_ST_KFold():
ST_KFold_generator = ST_KFold(n_splits=3,
Spatio1 = "longitude",
Spatio2 = "latitude",
Temporal1 = "DOY",
Expand Down

0 comments on commit ce58cbf

Please sign in to comment.