- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 221 - 230 of 931 for tests (0.07 sec)
-
Effect of varying threshold for self-training —...
train_index ] X_test = X [ test_index ] y_test = y [ test_index ] y_test_true...y_test_true = y_true [ test_index ] self_training_clf . fit (...scikit-learn.org/stable/auto_examples/semi_supervised/plot_self_training_varying_threshold.html -
IsolationForest example — scikit-learn 1.6.1 do...
X_test , y_train , y_test = train_test_split ( X ,...sklearn.model_selection import train_test_split n_samples , n_outliers...scikit-learn.org/stable/auto_examples/ensemble/plot_isolation_forest.html -
Confusion matrix — scikit-learn 1.6.1 documenta...
set and a test set X_train , X_test , y_train , y_test = train_test_split...from_estimator ( classifier , X_test , y_test , display_labels = class_names...scikit-learn.org/stable/auto_examples/model_selection/plot_confusion_matrix.html -
6.3. Preprocessing data — scikit-learn 1.6.1 do...
X_test , y_train , y_test = train_test_split ( X ,...score ( X_test , y_test ) # apply scaling on testing data, without...scikit-learn.org/stable/modules/preprocessing.html -
Curve Fitting with Bayesian Ridge Regression — ...
increasing = True ) X_test = np . vander ( x_test , n_order + 1 , increasing...predict ( X_test , return_std = True ) ax . plot ( x_test , func (...scikit-learn.org/stable/auto_examples/linear_model/plot_bayesian_ridge_curvefit.html -
plot_hgbt_regression.ipynb
import train_test_split\n\nX_train, X_test, y_train, y_test = train_test_split(X,...train_test_split(X, y, test_size=0.4, shuffle=False)\n\nprint(f\"Training...scikit-learn.org/stable/_downloads/cb9a8a373677fb481fe43a11d8fa0e94/plot_hgbt_regression.ipynb -
StratifiedShuffleSplit — scikit-learn 1.6.1 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 -
MLPRegressor — scikit-learn 1.7.dev0 documentation
X_test , y_train , y_test = train_test_split ( X ,...-290...]) >>> regr . score ( X_test , y_test ) 0.98... fit ( X , y ,...scikit-learn.org/dev/modules/generated/sklearn.neural_network.MLPRegressor.html -
FixedThresholdClassifier — scikit-learn 1.6.1 d...
X_test , y_train , y_test = train_test_split ( ......confusion_matrix ( y_test , classifier . predict ( X_test ))) [[217 7]...scikit-learn.org/stable/modules/generated/sklearn.model_selection.FixedThresholdClassifier.html -
GroupShuffleSplit — scikit-learn 1.6.1 document...
f " Test: index= { test_index } , group= { groups [ test_index...indices for that split. test ndarray The testing set indices for that...scikit-learn.org/stable/modules/generated/sklearn.model_selection.GroupShuffleSplit.html