Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 441 - 460 of 1,271 for test (1.33 sec)

  1. Recognizing hand-written digits — scikit-learn ...

    and 50% test subsets X_train , X_test , y_train , y_test = train_test_split...train_test_split ( data , digits . target , test_size = 0.5 , shuffle...
    scikit-learn.org/stable/auto_examples/classification/plot_digits_classification.html
    Wed Nov 05 14:36:35 UTC 2025
      102K bytes
      Cache
     
  2. Visualization of MLP weights on MNIST — scikit-...

    partition and test partition X_train , X_test , y_train , y_test = train_test_split...print ( "Test set score: %f " % mlp . score ( X_test , y_test )) fig...
    scikit-learn.org/stable/auto_examples/neural_networks/plot_mnist_filters.html
    Wed Nov 05 14:36:32 UTC 2025
      93.4K bytes
      Cache
     
  3. 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
    Mon Sep 15 10:51:17 UTC 2025
      22K bytes
      34 views
      Cache
     
  4. Poisson regression and non-normal loss — scikit...

    df_test = train_test_split ( df , test_size = 0.33 ,...df_test [ "Frequency" ], df_test [ "Frequency" ], df_test [ "Exposure"...
    scikit-learn.org/stable/auto_examples/linear_model/plot_poisson_regression_non_normal_loss.html
    Wed Nov 05 14:36:32 UTC 2025
      172.7K bytes
      Cache
     
  5. 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
    Wed Nov 05 14:36:35 UTC 2025
      325.8K bytes
      Cache
     
  6. ConfusionMatrixDisplay — scikit-learn 1.7.2 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.ConfusionMatrixDisplay.html
    Wed Nov 05 14:36:33 UTC 2025
      150.1K bytes
      Cache
     
  7. 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
    Wed Nov 05 14:36:32 UTC 2025
      100.8K bytes
      1 views
      Cache
     
  8. Species distribution modeling — scikit-learn 1....

    "ascii" ) points = dict ( test = test , train = train ) for label...species . pts_test [ "dd long" ], species . pts_test [ "dd lat"...
    scikit-learn.org/stable/auto_examples/applications/plot_species_distribution_modeling.html
    Wed Nov 05 14:36:32 UTC 2025
      122.4K bytes
      Cache
     
  9. Failure of Machine Learning to infer causal eff...

    X_test , y_train , y_test = train_test_split ( X ,...data into a training and a testing set. from sklearn.model_selection...
    scikit-learn.org/stable/auto_examples/inspection/plot_causal_interpretation.html
    Wed Nov 05 14:36:33 UTC 2025
      109.8K bytes
      Cache
     
  10. OutsideSqlTestCommandPlugin (DBFlute Maven Plug...

    provides outside-sql-test goal to run outside-sql-test.[sh|bat]. 作成者:...
    dbflute.seasar.org/maven/plugin/apidocs/org/seasar/dbflute/maven/plugin/OutsideSqlTestCommandPlug...
    Mon Sep 15 10:51:18 UTC 2025
      14.8K bytes
      Cache
     
  11. Evaluation of outlier detection estimators — sc...

    reduced using a stratified train_test_split . Furthermore, we set...sklearn.model_selection import train_test_split X , y = fetch_kddcup99...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_outlier_detection_bench.html
    Wed Nov 05 14:36:35 UTC 2025
      164.6K bytes
      Cache
     
  12. Roadmap — scikit-learn 1.7.2 documentation

    data by implementing a common test. An amputation sample generator...Improve scikit-learn common tests suite to make sure that (at...
    scikit-learn.org/stable/roadmap.html
    Wed Nov 05 14:36:35 UTC 2025
      31.9K bytes
      Cache
     
  13. Novelty detection with Local Outlier Factor (LO...

    X_outliers ) n_error_test = y_pred_test [ y_pred_test == - 1 ] . size...# e.g. X_test, X_outliers or the meshgrid y_pred_test = clf ....
    scikit-learn.org/stable/auto_examples/neighbors/plot_lof_novelty_detection.html
    Wed Nov 05 14:36:32 UTC 2025
      103.2K bytes
      1 views
      Cache
     
  14. AI Assistant for Elastic Security | Elastic Docs

    selected text. Copy to clipboard ( ): Copy the text to clipboard...XV-x7pi5bxrSvU_0", "name": "test_daija_glover", "roles": [ "superuser"...
    www.elastic.co/docs/solutions/security/ai/ai-assistant
    Wed Nov 05 11:36:26 UTC 2025
      402.6K bytes
      Cache
     
  15. Visualizing cross-validation behavior in scikit...

    cross-validation Nested versus non-nested cross-validation Nested versus...split data into training and test sets in order to avoid model...
    scikit-learn.org/stable/auto_examples/model_selection/plot_cv_indices.html
    Wed Nov 05 14:36:32 UTC 2025
      119.9K bytes
      Cache
     
  16. Release Highlights for scikit-learn 0.24 — scik...

    X_test , y_train , y_test = train_test_split ( X ,...X_train , X_test , y_train , y_test = train_test_split ( X ,...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_0_24_0.html
    Wed Nov 05 14:36:33 UTC 2025
      176.2K bytes
      Cache
     
  17. Early stopping in Gradient Boosting — scikit-le...

    y_val = train_test_split ( X , y , test_size = 0.2 , random_state...sklearn.model_selection import train_test_split data = fetch_california_housing...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_early_stopping.html
    Wed Nov 05 14:36:33 UTC 2025
      108.1K bytes
      Cache
     
  18. Univariate Feature Selection — scikit-learn 1.7...

    X_test , y_train , y_test = train_test_split ( X ,...format ( clf . score ( X_test , y_test ) ) ) svm_weights = np ....
    scikit-learn.org/stable/auto_examples/feature_selection/plot_feature_selection.html
    Wed Nov 05 14:36:33 UTC 2025
      105.9K bytes
      Cache
     
  19. Column Transformer with Heterogeneous Data Sour...

    ) X_test , y_test = fetch_20newsgroups ( random_state...body = text . partition ( " \n\n " ) # store body text in second...
    scikit-learn.org/stable/auto_examples/compose/plot_column_transformer.html
    Wed Nov 05 14:36:33 UTC 2025
      107.7K bytes
      Cache
     
  20. Configure logging | Elastic Docs

    so avoid creating tests that depend on specific selectors....2017-12-17T18:54:16.241-0500 INFO logp/core_test.go:13 unnamed global logger...
    www.elastic.co/docs/solutions/observability/apm/apm-server/configure-logging
    Tue Nov 04 17:37:31 UTC 2025
      374.3K bytes
      Cache
     
Back to top