- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 121 - 130 of 932 for tests (0.09 sec)
-
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 -
Action定義のテスト (ActionDefTest) | LastaFlute
src/main/resources // メインのリソース置き場 src/test/java // テストクラス置き場 |-org.docksidestage...UnitDocksideTestCase { public void test_component() throws Exception...dbflute.seasar.org/ja/lastaflute/howto/action/actiondeftest.html -
5. Visualizations — scikit-learn 1.5.2 document...
X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( svc , X_test , y_test ) The returned svc_disp...scikit-learn.org/stable/visualizations.html -
Efficient bitwise matching in Elasticsearch - S...
keyword representation: PUT test_terms_encoding { "mappings":...binary bit representations: POST test_terms_encoding/_doc/1 { "terms_encoded_bits":...www.elastic.co/search-labs/blog/efficient-bitwise-matching-in-elasticsearch -
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 -
One-class SVM with non-linear kernel (RBF) — sc...
size n_error_test = y_pred_test [ y_pred_test == - 1 ] . size...X_train ) y_pred_test = clf . predict ( X_test ) y_pred_outliers...scikit-learn.org/stable/auto_examples/svm/plot_oneclass.html