8000 Make it 5000 · scikit-learn/scikit-learn@e4246dc · GitHub
[go: up one dir, main page]

Skip to content

Commit e4246dc

Browse files
committed
Make it 5000
1 parent 2cd9823 commit e4246dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sklearn/model_selection/tests/test_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ def test_search_cv_results_none_param():
880880
def test_search_cv_timing():
881881
svc = LinearSVC(random_state=0)
882882

883-
X, y = make_classification(n_samples=1000, random_state=0)
883+
X, y = make_classification(n_samples=5000, random_state=0)
884884

885885
gs = GridSearchCV(svc, {'C': [0, 1]}, cv=2, error_score=0)
886886
rs = RandomizedSearchCV(svc, {'C': [0, 1]}, cv=2, error_score=0, n_iter=2)

0 commit comments

Comments
 (0)
0