Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 201 - 220 of 923 for test (0.15 sec)

  1. Elastic SharePoint Server connector reference |...

    Connector testing for more details. To perform E2E testing for the...$ make ftest NAME=sharepoint_server For faster tests, add the...
    www.elastic.co/guide/en/enterprise-search/current/connectors-sharepoint.html
    Thu Apr 11 16:52:22 UTC 2024
      31.5K bytes
      Cache
     
  2. Nearest Neighbors Classification — scikit-learn...

    X_test , y_train , y_test = train_test_split ( X ,...split the data into a train and test dataset. from sklearn.datasets...
    scikit-learn.org/stable/auto_examples/neighbors/plot_classification.html
    Fri Apr 26 16:41:50 UTC 2024
      32.7K bytes
      Cache
     
  3. Detection error tradeoff (DET) curve — scikit-l...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( clf , X_test , y_test , ax = ax_roc , name = name...
    scikit-learn.org/stable/auto_examples/model_selection/plot_det.html
    Fri Apr 26 16:41:50 UTC 2024
      33.6K bytes
      Cache
     
  4. ハンズオンセクション 2 | DBFlute

    Eclipse _test ※ドキュメント上の説明は、こちらをベースに書いています IntelliJ _utest _test と打って...HandsOn02Test クラスを src/test/java (Testクラス置き場) に作成してください。 このクラスは...
    dbflute.seasar.org/ja/tutorial/handson/section0...
    Mon Mar 18 15:47:33 UTC 2024
      27.8K bytes
      Cache
     
  5. 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
    Fri Apr 26 16:41:50 UTC 2024
      59.5K bytes
      Cache
     
  6. Elastic Jira connector reference | Enterprise S...

    Connector testing for more details. To perform E2E testing for the...command: $ make ftest NAME=jira For faster tests, add the DATA_SIZE=small...
    www.elastic.co/guide/en/enterprise-search/current/connectors-jira.html
    Thu Apr 11 16:52:22 UTC 2024
      60.3K bytes
      Cache
     
  7. sklearn.tree.ExtraTreeRegressor — scikit-learn ...

    X_test , y_train , y_test = train_test_split ( ......y_train ) >>> reg . score ( X_test , y_test ) 0.33... Methods apply...
    scikit-learn.org/stable/modules/generated/sklearn.tree.ExtraTreeRegressor.html
    Fri Apr 26 16:41:50 UTC 2024
      83.6K 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
    Fri Apr 26 16:41:51 UTC 2024
      34.9K bytes
      Cache
     
  9. sklearn.model_selection.StratifiedGroupKFold — ...

    print ( f " Test: index= { test_index } " ) ... print...indices for that split. test ndarray The testing set indices for that...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.StratifiedGroupKFold.html
    Fri Apr 26 16:41:50 UTC 2024
      41K bytes
      Cache
     
  10. 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
    Fri Apr 26 16:41:51 UTC 2024
      39K bytes
      Cache
     
  11. Comparison between grid search and successive h...

    is_sh : # SH dataframe: get mean_test_score values for the highest...= "param_C" , values = "mean_test_score" , aggfunc = "last" ,...
    scikit-learn.org/stable/auto_examples/model_selection/plot_successive_halving_heatmap.html
    Fri Apr 26 16:41:51 UTC 2024
      43.2K bytes
      Cache
     
  12. sklearn.feature_selection.f_regression — scikit...

    Comparison of F-test and mutual information Comparison of F-test and mutual...Univariate linear regression tests returning F-statistic and p-values....
    scikit-learn.org/stable/modules/generated/sklearn.feature_selection.f_regression.html
    Fri Apr 26 16:41:50 UTC 2024
      28.2K bytes
      Cache
     
  13. Image denoising using kernel PCA — scikit-learn...

    X_test , y_train , y_test = train_test_split ( X ,...0.25 , size = X_test . shape ) X_test_noisy = X_test + noise noise...
    scikit-learn.org/stable/auto_examples/applications/plot_digits_denoising.html
    Fri Apr 26 16:41:51 UTC 2024
      39.5K bytes
      Cache
     
  14. 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
    Fri Apr 26 16:41:50 UTC 2024
      39.2K bytes
      Cache
     
  15. 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 Apr 26 16:41:51 UTC 2024
      41.3K bytes
      Cache
     
  16. sklearn.multiclass.OutputCodeClassifier — sciki...

    the mean accuracy on the given test data and labels. set_params...the mean accuracy on the given test data and labels. In multi-label...
    scikit-learn.org/stable/modules/generated/sklearn.multiclass.OutputCodeClassifier.html
    Fri Apr 26 16:41:50 UTC 2024
      44.6K bytes
      Cache
     
  17. Decision Tree Regression — scikit-learn 1.4.2 d...

    predict ( X_test ) y_2 = regr_2 . predict ( X_test ) # Plot the.... fit ( X , y ) # Predict X_test = np . arange ( 0.0 , 5.0 ,...
    scikit-learn.org/stable/auto_examples/tree/plot_tree_regression.html
    Fri Apr 26 16:41:51 UTC 2024
      28.7K bytes
      Cache
     
  18. One-Class SVM versus One-Class SVM using Stocha...

    size n_error_test = y_pred_test [ y_pred_test == - 1 ] . size...size n_error_test_sgd = y_pred_test_sgd [ y_pred_test_sgd == - 1...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sgdocsvm_vs_ocsvm.html
    Fri Apr 26 16:41:51 UTC 2024
      59.5K bytes
      Cache
     
  19. 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
    Fri Apr 26 16:41:51 UTC 2024
      35K bytes
      Cache
     
  20. 5. Visualizations — scikit-learn 1.4.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
    Fri Apr 26 16:41:50 UTC 2024
      28.2K bytes
      Cache
     
Back to top