Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 241 - 260 of 1,328 for test (0.38 sec)

  1. DummyClassifier — scikit-learn 1.7.2 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
    Fri Sep 12 13:34:53 UTC 2025
      142.6K bytes
      Cache
     
  2. Gradient Boosting Out-of-Bag estimates — scikit...

    -= test_score [ 0 ] test_best_iter = x [ np . argmin ( test_score...x = test_best_iter , color = test_color , linestyle = test_line...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_oob.html
    Fri Sep 12 13:34:56 UTC 2025
      112K bytes
      Cache
     
  3. Post-tuning the decision threshold for cost-sen...

    ]( est , X_test , y_test ), scoring [ "precision" ]( est , X_test..."fpr" ]( est , X_test , y_test ), scoring [ "tpr" ]( est , X_test...
    scikit-learn.org/stable/auto_examples/model_selection/plot_cost_sensitive_learning.html
    Fri Sep 12 13:34:53 UTC 2025
      293.2K bytes
      Cache
     
  4. Common pitfalls in the interpretation of coeffi...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...predict ( X_test ) mae_test = median_absolute_error ( y_test , y_pred...
    scikit-learn.org/stable/auto_examples/inspection/plot_linear_model_coefficient_interpretation.html
    Fri Sep 12 13:34:53 UTC 2025
      325.8K bytes
      Cache
     
  5. AI Assistant Knowledge Base | Elastic Docs

    semantic text or text field. Supported file types include text, PDF,...in the Markdown text field. In the Markdown text field, enter the...
    www.elastic.co/docs/solutions/security/ai/ai-assistant-knowledge-base
    Sat Sep 13 01:59:30 UTC 2025
      322.1K bytes
      Cache
     
  6. 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
    Fri Sep 12 13:34:55 UTC 2025
      143.3K bytes
      Cache
     
  7. Balance model complexity and cross-validated sc...

    "mean_test_score" : test_scores , "std_test_score" : grid...std of test scores mean_test_scores = np . mean ( test_scores...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_refit_callable.html
    Fri Sep 12 13:34:53 UTC 2025
      169.1K bytes
      Cache
     
  8. 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
    Tue Aug 12 02:41:09 UTC 2025
      22K bytes
      34 views
      Cache
     
  9. 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
    Fri Sep 12 13:34:50 UTC 2025
      113.9K bytes
      Cache
     
  10. RFECV — scikit-learn 1.7.2 documentation

    test) splits as arrays of indices....the following keys: split(k)_test_score ndarray of shape (n_s...
    scikit-learn.org/stable/modules/generated/sklearn.feature_selection.RFECV.html
    Fri Sep 12 13:34:53 UTC 2025
      158.4K bytes
      Cache
     
  11. 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
    Fri Sep 12 13:34:55 UTC 2025
      100.8K bytes
      1 views
      Cache
     
  12. LinearSVC — scikit-learn 1.7.2 documentation

    vs the rest. It is possible to implement one vs the rest with SVC...shape (n_samples, n_features) Test samples. y array-like of shape...
    scikit-learn.org/stable/modules/generated/sklearn.svm.LinearSVC.html
    Fri Sep 12 13:34:53 UTC 2025
      162.4K bytes
      Cache
     
  13. GraphicalLasso — scikit-learn 1.7.2 documentation

    : X_test array-like of shape (n_samples, n_features) Test data...the observations. score ( X_test , y = None ) [source] # Compute...
    scikit-learn.org/stable/modules/generated/sklearn.covariance.GraphicalLasso.html
    Fri Sep 12 13:34:53 UTC 2025
      132.4K bytes
      Cache
     
  14. ComplementNB — scikit-learn 1.7.2 documentation

    classification on an array of test vectors X. Parameters : X array-like...probability estimates for the test vector X. For each row x of...
    scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.ComplementNB.html
    Fri Sep 12 13:34:55 UTC 2025
      153K bytes
      Cache
     
  15. Gradient Boosting regression — scikit-learn 1.7...

    X_test , y_train , y_test = train_test_split ( X ,...mean_squared_error ( y_test , reg . predict ( X_test )) print ( "The...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_regression.html
    Fri Sep 12 13:34:53 UTC 2025
      110K bytes
      Cache
     
  16. fetch_20newsgroups_vectorized — scikit-learn 1....

    test’ for the test set, ‘all’ for both,...Parameters : subset {‘train’, ‘test’, ‘all’}, default=’train’ Select...
    scikit-learn.org/stable/modules/generated/sklearn.datasets.fetch_20newsgroups_vectorized.html
    Fri Sep 12 13:34:55 UTC 2025
      118.2K bytes
      Cache
     
  17. UTFluteのセットアップ | DBFlute

    @Java /** * The test case with container for unit test. * @author...PlainTestCase { public void test_demo() { // メソッド名が test で始まること markHere(...
    dbflute.seasar.org/ja/manual/function/helper/utflute/setup.html
    Tue Aug 12 02:41:09 UTC 2025
      23.5K bytes
      2 views
      Cache
     
  18. Release Highlights for scikit-learn 1.4 — sciki...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...( "cv error on test sets:" , results [ "test_mse" ]) # Setting...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_1_4_0.html
    Fri Sep 12 13:34:55 UTC 2025
      176.2K bytes
      Cache
     
  19. Statistical comparison of models using grid sea...

    "rank_test_score" , "mean_test_score" , "std_test_score" ]]...params rank_test_score mean_test_score std_test_score kernel...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_stats.html
    Fri Sep 12 13:34:53 UTC 2025
      192K bytes
      Cache
     
  20. Installing scikit-learn — scikit-learn 1.7.2 do...

    2 tests pytest-cov 2.9.0 tests ruff 0.11.7 tests mypy 1.15...1.15 tests pyamg 4.2.1 tests polars 0.20.30 docs, tests pyarrow...
    scikit-learn.org/stable/install.html
    Fri Sep 12 13:34:55 UTC 2025
      54K bytes
      Cache
     
Back to top