- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 2291 - 2300 of 4,759 for * (0.25 sec)
-
Ridge coefficients as a function of the L2 Regu...
= plt . subplots ( 1 , 2 , figsize = ( 20 , 6 )) coefs . plot...are: [38.32634568 88.49665188 0. 29.75747153 0. 19.08699432 25.44381023...scikit-learn.org/stable/auto_examples/linear_model/plot_ridge_coeffs.html -
Plotting Learning Curves and Checking Models’ S...
"y" : y , "train_sizes" : np . linspace ( 0.1 , 1.0 , 5 ), "cv"...random_state = 0 ), "score_type" : "both" , "n_jobs" : 4 , "line_kw" : {...scikit-learn.org/stable/auto_examples/model_selection/plot_learning_curve.html -
Iso-probability lines for Gaussian Processes cl...
0.1 , ( 1e-5 , np . inf )) * DotProduct ( sigma_0 = 0.1 ) **...whether g(x) <= 0 or not)""" return 5.0 - x [:, 1 ] - 0.5 * x [:,...scikit-learn.org/stable/auto_examples/gaussian_process/plot_gpc_isoprobability.html -
Robust linear estimator fitting — scikit-learn ...
"-" , "Theil-Sen" : "-." , "RANSAC" : "--" , "HuberRegressor"...= ( 5 , 4 )) plt . plot ( this_X [:, 0 ], this_y , "b+" ) for...scikit-learn.org/stable/auto_examples/linear_model/plot_robust_fit.html -
Comparing Nearest Neighbors with and without Ne...
"#FF0000" , "#00FF00" , "#0000FF" ]) names = [ "KNN" , "NCA,...{} )" . format ( name , n_neighbors )) plt . text ( 0.9 , 0.1 ,...scikit-learn.org/stable/auto_examples/neighbors/plot_nca_classification.html -
Confusion matrix — scikit-learn 1.7.1 documenta...
confusion matrix [[1. 0. 0. ] [0. 0.62 0.38] [0. 0. 1. ]] # Authors: The...classifier = svm . SVC ( kernel = "linear" , C = 0.01 ) . fit ( X_train...scikit-learn.org/stable/auto_examples/model_selection/plot_confusion_matrix.html -
__sklearn_is_fitted__ as Developer API — scikit...
value. """ return hasattr ( self , "_is_fitted" ) and self . _is_fitted...self , X , y ): """ Fit the estimator to the training data. """...scikit-learn.org/stable/auto_examples/developing_estimators/sklearn_is_fitted.html -
SGD: Penalties — scikit-learn 1.7.1 documentation
= 18 , fmt = { 1.0 : "L1" }, manual = [( - 1 , - 1 )]) plt ....line = np . linspace ( - 1.5 , 1.5 , 1001 ) xx , yy = np . meshgrid...scikit-learn.org/stable/auto_examples/linear_model/plot_sgd_penalties.html -
Recursive feature elimination — scikit-learn 1....
"scaler" , MinMaxScaler ()), ( "rfe" , RFE ( estimator = LogisticRegression...LogisticRegression (), n_features_to_select = 1 , step = 1 )), ] ) pipe . fit...scikit-learn.org/stable/auto_examples/feature_selection/plot_rfe_digits.html -
Multiclass methods — scikit-learn 1.7.1 documen...
top Ctrl + K GitHub Choose version Multiclass methods # Examples...concerning the sklearn.multiclass module. Overview of multiclass...scikit-learn.org/stable/auto_examples/multiclass/index.html