Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 401 - 420 of 1,341 for test (0.19 sec)

  1. MultiTaskLassoCV — scikit-learn 1.7.0 documenta...

    default=None Values of alphas to test along the regularization path....An iterable yielding (train, test) splits as arrays of indices....
    scikit-learn.org/stable/modules/generated/sklearn.linear_model.MultiTaskLassoCV.html
    Tue Jul 01 15:59:34 UTC 2025
      163.2K bytes
      Cache
     
  2. Using Anomaly Detection in Elastic Cloud to Ide...

    “Card Testing”, which is when a malicious actor tests to see...called “Card Testing” where a malicious actor tests a batch of...
    www.elastic.co/observability-labs/blog/anomaly-detection-to-identify-fraud
    Sat Jun 07 13:43:45 UTC 2025
      124.4K bytes
      Cache
     
  3. Logistic function — scikit-learn 1.7.0 document...

    plot ( X_test , ols . coef_ * X_test + ols . intercept_...= "black" , zorder = 20 ) X_test = np . linspace ( - 5 , 10 ,...
    scikit-learn.org/stable/auto_examples/linear_model/plot_logistic.html
    Tue Jul 01 15:59:35 UTC 2025
      95K bytes
      Cache
     
  4. Visualizations with Display Objects — scikit-le...

    X_test , y_train , y_test = train_test_split ( X ,...predict ( X_test ) cm = confusion_matrix ( y_test , y_pred ) cm_display...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_display_object_visualization.html
    Tue Jul 01 15:59:35 UTC 2025
      126.6K bytes
      Cache
     
  5. 1.13. Feature selection — scikit-learn 1.7.0 do...

    the best features based on univariate statistical tests. It can...we can use a F-test to retrieve the two best features for a dataset...
    scikit-learn.org/stable/modules/feature_selection.html
    Tue Jul 01 15:59:34 UTC 2025
      73.8K 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
    Tue Jul 01 15:59:32 UTC 2025
      143.3K bytes
      Cache
     
  7. 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
    Tue Jul 01 15:59:35 UTC 2025
      113.9K bytes
      Cache
     
  8. Comparing Nearest Neighbors with and without Ne...

    X_test , y_train , y_test = train_test_split ( X ,...score = clf . score ( X_test , y_test ) _ , ax = plt . subplots...
    scikit-learn.org/stable/auto_examples/neighbors/plot_nca_classification.html
    Tue Jul 01 15:59:35 UTC 2025
      97.9K bytes
      Cache
     
  9. load_svmlight_files — scikit-learn 1.7.0 docume...

    target_test X_train , y_train , X_test , y_test = get_data ()...matrix X_test, it is essential that X_train and X_test have the...
    scikit-learn.org/stable/modules/generated/sklearn.datasets.load_svmlight_files.html
    Tue Jul 01 15:59:34 UTC 2025
      111.5K bytes
      Cache
     
  10. ハンズオンセクション 12 | DBFlute

    でなくてもいいが、できるだけ効率よく 対応テストメソッド test_selectDreamOrderList_その通りの順序で検索されていること()...会員名称と会員アカウントを連結して部分一致させて、会員を検索 対応テストメソッド test_selectDreamLikeSearc_その通りの条件で検索されていること()...
    dbflute.seasar.org/ja/tutorial/handson/section12.html
    Fri Jun 13 09:55:28 UTC 2025
      12.7K bytes
      1 views
      Cache
     
  11. 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
    Tue Jul 01 15:59:35 UTC 2025
      102.7K bytes
      Cache
     
  12. 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
    Fri Jun 13 09:55:28 UTC 2025
      22K bytes
      31 views
      Cache
     
  13. Detection error tradeoff (DET) curve — scikit-l...

    X_test , y_train , y_test = train_test_split ( X ,...definitions: \(\text{FPR} = \frac{\text{FP}}{\text{FP} + \text{TN}}\)...
    scikit-learn.org/stable/auto_examples/model_selection/plot_det.html
    Tue Jul 01 15:59:35 UTC 2025
      101.8K bytes
      Cache
     
  14. 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
    Tue Jul 01 15:59:32 UTC 2025
      98.1K bytes
      Cache
     
  15. Comparing various online solvers — scikit-learn...

    X_test , y_train , y_test = train_test_split ( X ,...( X_test ) yy_ . append ( 1 - np . mean ( y_pred == y_test ))...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sgd_comparison.html
    Thu Jun 05 00:23:05 UTC 2025
      94.9K bytes
      Cache
     
  16. 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
    Tue Jul 01 15:59:35 UTC 2025
      100.8K bytes
      Cache
     
  17. Restricted Boltzmann Machine features for digit...

    X_test , Y_train , Y_test = train_test_split ( X ,...sklearn.model_selection import train_test_split from sklearn.preprocessing...
    scikit-learn.org/stable/auto_examples/neural_networks/plot_rbm_logistic_classification.html
    Tue Jul 01 15:59:35 UTC 2025
      132.1K bytes
      Cache
     
  18. Perceptron — scikit-learn 1.7.0 documentation

    classification of text documents Out-of-core classification of text documents...shape (n_samples, n_features) Test samples. y array-like of shape...
    scikit-learn.org/stable/modules/generated/sklearn.linear_model.Perceptron.html
    Tue Jul 01 15:59:32 UTC 2025
      162.4K bytes
      Cache
     
  19. Robust linear estimator fitting — scikit-learn ...

    sin ( X_test ) X_test = X_test [:, np . newaxis ] y_errors...newaxis ] X_test = np . random . normal ( size = 200 ) y_test = np ....
    scikit-learn.org/stable/auto_examples/linear_model/plot_robust_fit.html
    Tue Jul 01 15:59:33 UTC 2025
      101.5K bytes
      Cache
     
  20. 9.3. Parallelism, resource management, and conf...

    sure that test results are independent of the test execution...run all tests with different seeds while keeping the test duration...
    scikit-learn.org/stable/computing/parallelism.html
    Tue Jul 01 15:59:35 UTC 2025
      61K bytes
      Cache
     
Back to top