Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 261 - 280 of 879 for test (0.15 sec)

  1. sklearn.calibration.CalibrationDisplay — scikit...

    X_test , y_train , y_test = train_test_split ( ......X_train , X_test , y_train , y_test = train_test_split ( ......
    scikit-learn.org/stable/modules/generated/sklearn.calibration.CalibrationDisplay.html
    Tue Apr 23 17:07:45 UTC 2024
      50.6K bytes
      Cache
     
  2. sklearn.metrics.PrecisionRecallDisplay — scikit...

    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.PrecisionRecallDisplay.html
    Tue Apr 23 17:07:46 UTC 2024
      59K bytes
      Cache
     
  3. Importance of Feature Scaling — scikit-learn 1....

    X_test , y_train , y_test = train_test_split ( X ,...( X_test ) y_pred_scaled = scaled_clf . predict ( X_test ) y_proba...
    scikit-learn.org/stable/auto_examples/preprocessing/plot_scaling_importance.html
    Tue Apr 23 17:07:45 UTC 2024
      59K bytes
      Cache
     
  4. sklearn.linear_model.RANSACRegressor — scikit-l...

    the mean accuracy on the given test data, which is used for the...Attributes : estimator_ object Best fitted model (copy of the estimator...
    scikit-learn.org/stable/modules/generated/sklearn.linear_model.RANSACRegressor.html
    Tue Apr 23 17:07:46 UTC 2024
      52.8K bytes
      Cache
     
  5. 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
    Tue Apr 23 17:07:46 UTC 2024
      33.6K bytes
      Cache
     
  6. 8.2. Computational Performance — scikit-learn 1...

    Here is sample code to test the sparsity of your input:...sparsify () clf . predict ( X_test ) In this example we prefer...
    scikit-learn.org/stable/computing/computational_performance.html
    Tue Apr 23 17:07:46 UTC 2024
      43.3K bytes
      Cache
     
  7. 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 Apr 23 17:07:46 UTC 2024
      34.9K bytes
      Cache
     
  8. sklearn.linear_model.HuberRegressor — scikit-le...

    n_features) Test samples. For some estimators...y_true.mean()) ** 2).sum() . The best possible score is 1.0 and it...
    scikit-learn.org/stable/modules/generated/sklearn.linear_model.HuberRegressor.html
    Tue Apr 23 17:07:45 UTC 2024
      58.1K bytes
      Cache
     
  9. 2.6. Covariance estimation — scikit-learn 1.4.2...

    then the test set is supposed to have the...
    scikit-learn.org/stable/modules/covariance.html
    Tue Apr 23 17:07:46 UTC 2024
      41.9K bytes
      Cache
     
  10. 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 Apr 23 17:07:45 UTC 2024
      39.2K bytes
      Cache
     
  11. 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 Apr 23 17:07:45 UTC 2024
      35K bytes
      Cache
     
  12. Faces recognition example using eigenfaces and ...

    X_test , y_train , y_test = train_test_split ( X , y , test_size...set and a test and keep 25% of the data for testing. X_train ,...
    scikit-learn.org/stable/auto_examples/applications/plot_face_recognition.html
    Tue Apr 23 17:07:45 UTC 2024
      50K bytes
      Cache
     
  13. 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 Apr 23 17:07:45 UTC 2024
      39.3K bytes
      Cache
     
  14. Statistical comparison of models using grid sea...

    "rank_test_score" , "mean_test_score" , "std_test_score" ]]...params rank_test_score mean_test_score std_test_score kernel...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_stats.html
    Tue Apr 23 17:07:45 UTC 2024
      115.7K bytes
      Cache
     
  15. Kernel PCA — scikit-learn 1.4.2 documentation

    X_test , y_train , y_test = train_test_split ( X ,..."Training data" ) test_ax . scatter ( X_test [:, 0 ], X_test [:, 1 ],...
    scikit-learn.org/stable/auto_examples/decomposition/plot_kernel_pca.html
    Tue Apr 23 17:07:45 UTC 2024
      44.1K bytes
      Cache
     
  16. 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
    Tue Apr 23 17:07:46 UTC 2024
      54.1K bytes
      Cache
     
  17. 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
    Tue Apr 23 17:07:45 UTC 2024
      57.2K bytes
      Cache
     
  18. 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
    Tue Apr 23 17:07:45 UTC 2024
      28K bytes
      Cache
     
  19. Linear Regression Example — scikit-learn 1.4.2 ...

    scatter ( diabetes_X_test , diabetes_y_test , color = "black" )...Split the data into training/testing sets diabetes_X_train = diabetes_X...
    scikit-learn.org/stable/auto_examples/linear_model/plot_ols.html
    Tue Apr 23 17:07:45 UTC 2024
      27.1K bytes
      Cache
     
  20. Shrinkage covariance estimation: LedoitWolf vs ...

    coloring_matrix ) X_test = np . dot ( base_X_test , coloring_matrix...ymin , - cv . best_estimator_ . score ( X_test ), color = "cyan"...
    scikit-learn.org/stable/auto_examples/covariance/plot_covariance_estimation.html
    Tue Apr 23 17:07:45 UTC 2024
      45K bytes
      Cache
     
Back to top