Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 181 - 200 of 449 for test (0.24 sec)

  1. 1.13. Feature selection — scikit-learn 1.4.2 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
    Wed Apr 17 16:39:24 UTC 2024
      54.1K bytes
      Cache
     
  2. 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
    Wed Apr 17 16:39:25 UTC 2024
      59.5K bytes
      Cache
     
  3. 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
    Wed Apr 17 16:39:24 UTC 2024
      39.3K bytes
      Cache
     
  4. 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 Apr 17 16:39:24 UTC 2024
      59.2K bytes
      Cache
     
  5. Gaussian processes on discrete data structures ...

    ) X_test = [ "AAA" , "ATAG" , "CTC" , "CT" , "C" ] Y_test = [...len ( X_test )), [ 1.0 if c else - 1.0 for c in Y_test ], s =...
    scikit-learn.org/stable/auto_examples/gaussian_process/plot_gpr_on_structured_data.html
    Wed Apr 17 16:39:23 UTC 2024
      57.2K bytes
      Cache
     
  6. 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 Apr 17 16:39:23 UTC 2024
      45.1K bytes
      Cache
     
  7. Ordinary Least Squares and Ridge Regression Var...

    plot ( X_test , clf . predict ( X_test ), color = "gray"...) ax . plot ( X_test , clf . predict ( X_test ), linewidth = 2...
    scikit-learn.org/stable/auto_examples/linear_model/plot_ols_ridge_variance.html
    Wed Apr 17 16:39:25 UTC 2024
      28K bytes
      Cache
     
  8. Feature importances with a forest of trees — sc...

    X_test , y_train , y_test = train_test_split ( X ,...permutation_importance ( forest , X_test , y_test , n_repeats = 10 , random_state...
    scikit-learn.org/stable/auto_examples/ensemble/plot_forest_importances.html
    Wed Apr 17 16:39:25 UTC 2024
      49K bytes
      Cache
     
  9. sklearn.utils.estimator_checks.check_estimator ...

    function will run an extensive test-suite for input validation,...own estimator . Additional tests for classifiers, regressors,...
    scikit-learn.org/stable/modules/generated/sklearn.utils.estimator_checks.check_estimator.html
    Wed Apr 17 16:39:24 UTC 2024
      18.7K bytes
      Cache
     
  10. Developing scikit-learn estimators — scikit-lea...

    _skip_test (default=False) whether to skip common tests entirely....Numbers Numerical assertions in tests Developing scikit-learn estimators...
    scikit-learn.org/stable/developers/develop.html
    Wed Apr 17 16:39:25 UTC 2024
      106.1K bytes
      Cache
     
  11. IsolationForest example — scikit-learn 1.4.2 do...

    X_test , y_train , y_test = train_test_split ( X ,...sklearn.model_selection import train_test_split n_samples , n_outliers...
    scikit-learn.org/stable/auto_examples/ensemble/plot_isolation_forest.html
    Wed Apr 17 16:39:25 UTC 2024
      55.1K bytes
      Cache
     
  12. Recursive feature elimination with cross-valida...

    "mean_test_score" ], yerr = rfecv . cv_results_ [ "std_test_score"...rfecv . cv_results_ [ "mean_test_score" ]) plt . figure () plt...
    scikit-learn.org/stable/auto_examples/feature_selection/plot_rfe_with_cross_validation.html
    Wed Apr 17 16:39:23 UTC 2024
      30.1K bytes
      Cache
     
  13. Glossary of Common Terms and API Elements — sci...

    common tests This refers to the tests run on almost every...(train_idx, test_idx) pairs. Each of {train,test}_idx is a 1d...
    scikit-learn.org/stable/glossary.html
    Wed Apr 17 16:39:24 UTC 2024
      203.1K bytes
      Cache
     
  14. sklearn.preprocessing.maxabs_scale — scikit-lea...

    splitting into training and test sets. This will bias the model...information would have leaked from the test set to the training set. In...
    scikit-learn.org/stable/modules/generated/sklearn.preprocessing.maxabs_scale.html
    Wed Apr 17 16:39:24 UTC 2024
      19.5K bytes
      Cache
     
  15. Elastic Observability [8.13] | Elastic

    Write a synthetic test Write a synthetic test to check critical...browser monitors Write a synthetic test Configure individual monitors...
    www.elastic.co/guide/en/observability/current/index.html
    Wed Apr 17 15:53:13 UTC 2024
      65.4K bytes
      Cache
     
  16. 7 Best Streaming Devices Of 2023

    To Avoid 6 Best Home Security Systems of 2023 7 Best Online Therapy...Therapy Platforms Of 2023 7 Best Pest Control Companies of 2023...
    digg.com/technology/streaming-services/best-streaming-devices
    Wed Apr 17 01:14:55 UTC 2024
      237.2K bytes
      Cache
     
  17. Normal, Ledoit-Wolf and OAS Linear Discriminant...

    for training n_test = 200 # samples for testing n_averages = 50...) X , y = generate_data ( n_test , n_features ) score_clf1 +=...
    scikit-learn.org/stable/auto_examples/classification/plot_lda.html
    Wed Apr 17 16:39:25 UTC 2024
      36K bytes
      Cache
     
  18. Gaussian Mixture Model Selection — scikit-learn...

    "mean_test_score" ] ] df [ "mean_test_score" ] = - df...estimator are stored in best_parameters_ and best_estimator_ , respectively....
    scikit-learn.org/stable/auto_examples/mixture/plot_gmm_selection.html
    Wed Apr 17 16:39:24 UTC 2024
      62.6K bytes
      Cache
     
  19. sklearn.model_selection.check_cv — scikit-learn...

    test) splits as arrays of indices....cross-validator which generates the train/test splits via the split method....
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.check_cv.html
    Wed Apr 17 16:39:24 UTC 2024
      18.3K bytes
      Cache
     
  20. Sparsity Example: Fitting only features 1 and 2...

    indices ] X_test = X [ - 20 :, indices ] y_train...y_train = y [: - 20 ] y_test = y [ - 20 :] Next we fit a linear...
    scikit-learn.org/stable/auto_examples/linear_model/plot_ols_3d.html
    Wed Apr 17 16:39:24 UTC 2024
      29.8K bytes
      Cache
     
Back to top