- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 361 - 370 of 1,752 for test (0.16 sec)
-
Class Likelihood Ratios to measure classificati...
import train_test_split X_train , X_test , y_train , y_test = train_test_split...the link between pre-test and post-test odds given by the Class...scikit-learn.org/stable/auto_examples/model_selection/plot_likelihood_ratios.html -
feed.xml
import { test, expect } from "@playwright/test"; test("homepage...import { test, expect } from "@playwright/test"; test("homepage...www.elastic.co/observability-labs/rss/feed.xml -
SVC — scikit-learn 1.6.0 documentation
cross-validation Nested versus non-nested cross-validation Nested versus...following example: Nested versus non-nested cross-validation Read...scikit-learn.org/stable/modules/generated/sklearn.svm.SVC.html -
Cross-validation on diabetes Dataset Exercise —...
score ( X [ test ], y [ test ]) ) ) print () print...= clf . cv_results_ [ "mean_test_score" ] scores_std = clf ....scikit-learn.org/stable/auto_examples/exercises/plot_cv_diabetes.html -
plot_classifier_comparison.rst.txt
and test part X, y = ds X_train, X_test, y_train, y_test = train_test_split(...Plot the testing points ax.scatter( X_test[:, 0], X_test[:, 1],...scikit-learn.org/stable/_sources/auto_examples/classification/plot_classifier_comparison.rst.txt -
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 -
DummyClassifier — scikit-learn 1.6.0 documentation
n_features) Test samples. Passing None as test samples gives...# Perform classification on test vectors X. Parameters : X array-like...scikit-learn.org/stable/modules/generated/sklearn.dummy.DummyClassifier.html -
RidgeClassifierCV — scikit-learn 1.7.dev0 docum...
best_score_ float Score of base estimator with best alpha....An iterable yielding (train, test) splits as arrays of indices....scikit-learn.org/dev/modules/generated/sklearn.linear_model.RidgeClassifierCV.html -
ExtraTreeRegressor — scikit-learn 1.6.0 documen...
X_test , y_train , y_test = train_test_split ( ......y_train ) >>> reg . score ( X_test , y_test ) 0.33... apply ( X , check_input...scikit-learn.org/stable/modules/generated/sklearn.tree.ExtraTreeRegressor.html -
Nearest Neighbors Classification — scikit-learn...
X_test , y_train , y_test = train_test_split ( X ,...split the data into a train and test dataset. from sklearn.datasets...scikit-learn.org/stable/auto_examples/neighbors/plot_classification.html