Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 51 - 60 of 132 for test (0.07 sec)

  1. Visualization of MLP weights on MNIST — scikit-...

    partition and test partition X_train , X_test , y_train , y_test = train_test_split...print ( "Test set score: %f " % mlp . score ( X_test , y_test )) fig...
    scikit-learn.org/stable/auto_examples/neural_networks/plot_mnist_filters.html
    Tue May 21 18:58:18 UTC 2024
      92.8K 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
    Tue May 21 18:58:19 UTC 2024
      95.7K bytes
      Cache
     
  3. Decision Tree Regression — scikit-learn 1.5.0 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
    Tue May 21 18:58:19 UTC 2024
      91.4K bytes
      Cache
     
  4. 5. Visualizations — scikit-learn 1.5.0 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
    Tue May 21 18:58:19 UTC 2024
      48.4K bytes
      Cache
     
  5. Digits Classification Exercise — scikit-learn 1...

    )] X_test = X_digits [ int ( 0.9 * n_samples ) :] y_test = y_digits..., y_train ) . score ( X_test , y_test )) print ( "LogisticRegression...
    scikit-learn.org/stable/auto_examples/exercises/plot_digits_classification_exercise.html
    Tue May 21 18:58:18 UTC 2024
      86.3K bytes
      Cache
     
  6. Version 0.13 — scikit-learn 1.5.0 documentation

    train_test_split being interpreted as a test by Yaroslav...Changed default test_size in cross_validation.train_test_split to None,...
    scikit-learn.org/stable/whats_new/v0.13.html
    Tue May 21 18:58:19 UTC 2024
      76.8K bytes
      Cache
     
  7. SVM Exercise — scikit-learn 1.5.0 documentation

    out the test data plt . scatter ( X_test [:, 0 ], X_test [:, 1...n_sample )] X_test = X [ int ( 0.9 * n_sample ) :] y_test = y [ int...
    scikit-learn.org/stable/auto_examples/exercises/plot_iris_exercise.html
    Tue May 21 18:58:19 UTC 2024
      95.7K bytes
      Cache
     
  8. Confusion matrix — scikit-learn 1.5.0 documenta...

    set and a test set X_train , X_test , y_train , y_test = train_test_split...from_estimator ( classifier , X_test , y_test , display_labels = class_names...
    scikit-learn.org/stable/auto_examples/model_selection/plot_confusion_matrix.html
    Tue May 21 18:58:18 UTC 2024
      88.7K bytes
      Cache
     
  9. 11.1. Array API support (experimental) — scikit...

    train_test_split Coverage is expected to...checks as part of the common tests to verify that the estimators...
    scikit-learn.org/stable/modules/array_api.html
    Tue May 21 18:58:19 UTC 2024
      55.3K bytes
      Cache
     
  10. Comparing randomized search and grid search for...

    "mean_test_score" ][ candidate ], results [ "std_test_score"...not carry over to a held-out test set. Note that in practice,...
    scikit-learn.org/stable/auto_examples/model_selection/plot_randomized_search.html
    Tue May 21 18:58:18 UTC 2024
      96.3K bytes
      Cache
     
Back to top