- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 41 - 50 of 420 for tests (0.08 sec)
-
Lagged features for time series forecasting — s...
import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.2 , random_state = 42 )...scikit-learn.org/stable/auto_examples/applications/plot_time_series_lagged_features.html -
StratifiedGroupKFold — scikit-learn 1.5.2 docum...
print ( f " Test: index= { test_index } " ) ... print...indices for that split. test ndarray The testing set indices for that...scikit-learn.org/stable/modules/generated/sklearn.model_selection.StratifiedGroupKFold.html -
ROC Curve with Visualization API — scikit-learn...
X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( svc , X_test , y_test ) plt . show () Training...scikit-learn.org/stable/auto_examples/miscellaneous/plot_roc_curve_visualization_api.html -
TimeSeriesSplit — scikit-learn 1.5.2 documentation
in train/test sets. In each split, test indices must be...n_splits=5, test_size=None) >>> for i , ( train_index , test_index...scikit-learn.org/stable/modules/generated/sklearn.model_selection.TimeSeriesSplit.html -
Gradient Boosting Out-of-Bag estimates — scikit...
X_test , y_train , y_test = train_test_split ( X ,...for test data test_score = heldout_score ( clf , X_test , y_test...scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_oob.html -
Multi-class AdaBoosted Decision Trees — scikit-...
import train_test_split X_train , X_test , y_train , y_test = train_test_split...the remaining 30 percent for testing. from sklearn.model_selection...scikit-learn.org/stable/auto_examples/ensemble/plot_adaboost_multiclass.html -
ShuffleSplit — scikit-learn 1.5.2 documentation
print ( f " Test: index= { test_index } " ) Fold 0: Train:...4] Test: index=[5 2] Fold 1: Train: index=[4 0 2 5] Test: index=[1...scikit-learn.org/stable/modules/generated/sklearn.model_selection.ShuffleSplit.html -
Multiclass sparse logistic regression on 20newg...
X_test , y_train , y_test = train_test_split ( X ,...predict ( X_test ) accuracy = np . sum ( y_pred == y_test ) / y_test...scikit-learn.org/stable/auto_examples/linear_model/plot_sparse_logistic_regression_20newsgroups.html -
Probability Calibration curves — scikit-learn 1...
X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( clf , X_test , y_test , n_bins = 10 , name = name...scikit-learn.org/stable/auto_examples/calibration/plot_calibration_curve.html -
StratifiedShuffleSplit — scikit-learn 1.5.2 doc...
Provides train/test indices to split data in train/test sets. This..." ) ... print ( f " Test: index= { test_index } " ) Fold 0: Train:...scikit-learn.org/stable/modules/generated/sklearn.model_selection.StratifiedShuffleSplit.html