Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 381 - 400 of 895 for test (0.41 sec)

  1. 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
    Sun May 19 20:00:39 UTC 2024
      35K bytes
      Cache
     
  2. 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
    Sun May 19 20:00:39 UTC 2024
      54.1K bytes
      Cache
     
  3. 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
    Sun May 19 20:00:39 UTC 2024
      55.1K bytes
      Cache
     
  4. 8.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
    Sun May 19 20:00:39 UTC 2024
      42.4K bytes
      Cache
     
  5. 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
    Sun May 19 20:00:38 UTC 2024
      29.8K bytes
      Cache
     
  6. 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
    Sun May 19 20:00:39 UTC 2024
      39.3K bytes
      Cache
     
  7. sklearn.datasets.fetch_rcv1 — scikit-learn 1.4....

    test’ for the test set (781265 samples),...subfolders. subset {‘train’, ‘test’, ‘all’}, default=’all’ Select...
    scikit-learn.org/stable/modules/generated/sklearn.datasets.fetch_rcv1.html
    Sun May 19 20:00:39 UTC 2024
      19.9K bytes
      Cache
     
  8. sklearn.datasets.fetch_lfw_pairs — scikit-learn...

    test’ for the development test set, and ‘10_folds’...Parameters : subset {‘train’, ‘test’, ‘10_folds’}, default=’train’...
    scikit-learn.org/stable/modules/generated/sklearn.datasets.fetch_lfw_pairs.html
    Sun May 19 20:00:39 UTC 2024
      20.4K bytes
      Cache
     
  9. 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
    Sun May 19 20:00:38 UTC 2024
      57.2K bytes
      Cache
     
  10. 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
    Sun May 19 20:00:39 UTC 2024
      28K bytes
      Cache
     
  11. 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
    Sun May 19 20:00:39 UTC 2024
      106.1K bytes
      Cache
     
  12. Slashdot: News for nerds, stuff that matters

    source and give up the Morse Code test for ham radio licenses, Bruce...DDX drivers were fixed and tested to work again, as well as complete...
    slashdot.org/
    Mon May 20 01:14:40 UTC 2024
      177.4K bytes
      3 views
      Cache
     
  13. 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
    Sun May 19 20:00:39 UTC 2024
      19.5K bytes
      Cache
     
  14. Getting Started — scikit-learn 1.4.2 documentation

    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/getting_started.html
    Sun May 19 20:00:39 UTC 2024
      40K bytes
      Cache
     
  15. decomposition.rst.txt

    ||X-UV||_{\text{Fro}}^2+\alpha||V||_{1,1} \\ \text{subject to...||X-UV||_{\text{Fro}}^2+\alpha||U||_{1,1} \\ \text{subject to...
    scikit-learn.org/stable/_sources/modules/decomposition.rst.txt
    Sun May 19 20:00:39 UTC 2024
      45.8K bytes
      1 views
     
  16. Select | Deals, Tips and Product Reviews | Sele...

    Select 100 The 100 best moisturizers tested and ranked, according...Sunbasket The best meal delivery services, tested by editors Kara...
    www.nbcnews.com/select
    Sun May 19 00:48:51 UTC 2024
      785.9K bytes
      1 views
      Cache
     
  17. Probability calibration of classifiers — scikit...

    y_test , sw_train , sw_test = train_test_split ( X , y , sample_weight...split train, test for calibration X_train , X_test , y_train ,...
    scikit-learn.org/stable/auto_examples/calibration/plot_calibration.html
    Sun May 19 20:00:38 UTC 2024
      45.8K bytes
      Cache
     
  18. Receiver Operating Characteristic (ROC) with cr...

    X [ test ], y [ test ], name = f "ROC fold..., 6 )) for fold , ( train , test ) in enumerate ( cv . split...
    scikit-learn.org/stable/auto_examples/model_selection/plot_roc_crossval.html
    Sun May 19 20:00:38 UTC 2024
      37.9K bytes
      Cache
     
  19. 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
    Sun May 19 20:00:39 UTC 2024
      39.5K bytes
      Cache
     
  20. 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
    Sun May 19 20:00:39 UTC 2024
      36K bytes
      Cache
     
Back to top