Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 441 - 450 of 1,333 for test (0.12 sec)

  1. Non-negative least squares — scikit-learn 1.7.0...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.5 ) Fit the Non-Negative...
    scikit-learn.org/stable/auto_examples/linear_model/plot_nnls.html
    Wed Jul 02 18:21:48 UTC 2025
      93.4K bytes
      Cache
     
  2. ExtraTreeRegressor — scikit-learn 1.7.0 documen...

    X_test , y_train , y_test = train_test_split ( ......y_train ) >>> reg . score ( X_test , y_test ) 0.33 apply ( X , check_input...
    scikit-learn.org/stable/modules/generated/sklearn.tree.ExtraTreeRegressor.html
    Fri Jun 27 15:51:05 UTC 2025
      161.1K bytes
      Cache
     
  3. Varying regularization in Multi-layer Perceptro...

    training and test part X_train , X_test , y_train , y_test = train_test_split...and testing points ax . scatter ( X_test [:, 0 ], X_test [:,...
    scikit-learn.org/stable/auto_examples/neural_networks/plot_mlp_alpha.html
    Wed Jul 02 18:21:48 UTC 2025
      109.1K bytes
      Cache
     
  4. Features in Histogram Gradient Boosting Trees —...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.4 , shuffle = False ) print...
    scikit-learn.org/stable/auto_examples/ensemble/plot_hgbt_regression.html
    Wed Jul 02 18:21:48 UTC 2025
      150.9K bytes
      Cache
     
  5. Tweedie regression on insurance claims — scikit...

    ( "test" , X_test , df_test ), ]: y , _weights...train_test_split df_train , df_test , X_train , X_test = train_test_split...
    scikit-learn.org/stable/auto_examples/linear_model/plot_tweedie_regression_insurance_claims.html
    Wed Jul 02 18:21:48 UTC 2025
      181.8K bytes
      Cache
     
  6. Principal Component Regression vs Partial Least...

    X_test , y_train , y_test = train_test_split ( X ,...scatter ( pca . transform ( X_test ), y_test , alpha = 0.3 , label =...
    scikit-learn.org/stable/auto_examples/cross_decomposition/plot_pcr_vs_pls.html
    Wed Jul 02 18:21:48 UTC 2025
      112.9K bytes
      Cache
     
  7. 5.2. Permutation feature importance — scikit-le...

    model_selection import train_test_split >>> from sklearn.linear_model...X_val , y_train , y_val = train_test_split ( ... diabetes . data...
    scikit-learn.org/stable/modules/permutation_importance.html
    Wed Jul 02 18:21:48 UTC 2025
      56.2K bytes
      Cache
     
  8. Examples of Using FrozenEstimator — scikit-lear...

    X_test , y_train , y_test = train_test_split ( X ,...( X_test )[:, 1 ] clf_score = brier_score_loss ( y_test , prob_pos_clf...
    scikit-learn.org/stable/auto_examples/frozen/plot_frozen_examples.html
    Wed Jul 02 18:21:48 UTC 2025
      100.9K bytes
      Cache
     
  9. Explicit feature map approximation for RBF kern...

    the second half: data_test , targets_test = ( data [ n_samples...2 :]) # data_test = scaler.transform(data_test) # Create a classifier:...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_kernel_approximation.html
    Wed Jul 02 18:21:48 UTC 2025
      124.4K bytes
      Cache
     
  10. Ordinary Least Squares and Ridge Regression — s...

    X_test , y_train , y_test = train_test_split ( X ,...] . scatter ( X_test , y_test , label = "Test data points" ) ax...
    scikit-learn.org/stable/auto_examples/linear_model/plot_ols_ridge.html
    Wed Jul 02 18:21:48 UTC 2025
      106.7K bytes
      Cache
     
Back to top