- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 201 - 210 of 931 for tests (0.12 sec)
-
PrecisionRecallDisplay — scikit-learn 1.6.1 doc...
X_test , y_train , y_test = train_test_split ( X ,...X_train , X_test , y_train , y_test = train_test_split ( ......scikit-learn.org/stable/modules/generated/sklearn.metrics.PrecisionRecallDisplay.html -
Importance of Feature Scaling — scikit-learn 1....
X_test , y_train , y_test = train_test_split ( X ,...( X_test ) y_pred_scaled = scaled_clf . predict ( X_test ) y_proba...scikit-learn.org/stable/auto_examples/preprocessing/plot_scaling_importance.html -
auto_examples_python.zip
tick test_stats["n_test"] += len(y_test) test_stats["n_test_pos"]...X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.25,...scikit-learn.org/stable/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip -
Comparing Target Encoder with Other Encoders — ...
"rmse_test_mean" : rmse_test_score . mean (), "rmse_test_std"...= True , ) rmse_test_score = - result [ "test_score" ] rmse_train_score...scikit-learn.org/stable/auto_examples/preprocessing/plot_target_encoder.html -
6.1. Pipelines and composite estimators — sciki...
X_test , y_train , y_test = train_test_split ( X ,...format ( regr . score ( X_test , y_test ))) R2 score: 0.61 >>> raw_target_regr...scikit-learn.org/stable/modules/compose.html -
Comparison of kernel ridge regression and SVR —...
train_time = [] test_time = [] for train_test_size in sizes :...fit ( X [: train_test_size ], y [: train_test_size ]) train_time...scikit-learn.org/stable/auto_examples/miscellaneous/plot_kernel_ridge_regression.html -
KFold — scikit-learn 1.6.1 documentation
Provides train/test indices to split data in train/test sets. Split..." ) ... print ( f " Test: index= { test_index } " ) Fold 0: Train:...scikit-learn.org/stable/modules/generated/sklearn.model_selection.KFold.html -
Underfitting vs. Overfitting — scikit-learn 1.6...
plot ( X_test , pipeline . predict ( X_test [:, np . newaxis..."Model" ) plt . plot ( X_test , true_fun ( X_test ), label = "True function"...scikit-learn.org/stable/auto_examples/model_selection/plot_underfitting_overfitting.html -
Detection error tradeoff (DET) curve — scikit-l...
X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( clf , X_test , y_test , ax = ax_roc , name = name...scikit-learn.org/stable/auto_examples/model_selection/plot_det.html -
TimeSeriesSplit — scikit-learn 1.6.1 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