Skip to content

Commit 717c4c9

Browse files
committed
fix typo
1 parent bd41155 commit 717c4c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stemflow/model/SphereAdaSTEM.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from ..utils.sphere_quadtree import get_one_ensemble_sphere_quadtree
2222
from ..utils.validation import (
2323
check_base_model,
24-
check_prediciton_aggregation,
24+
check_prediction_aggregation,
2525
check_random_state,
2626
check_spatial_scale,
2727
check_spatio_bin_jitter_magnitude,

stemflow/utils/validation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ def check_X_test(X_test, self):
377377
check_X_train(X_test, self)
378378

379379

380-
def check_prediciton_aggregation(aggregation):
380+
def check_prediction_aggregation(aggregation):
381381
if aggregation not in ["mean", "median"]:
382382
raise ValueError(f"aggregation must be one of 'mean' and 'median'. Got {aggregation}")
383383

0 commit comments

Comments
 (0)