- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 701 - 710 of 2,956 for 1 (0.2 sec)
-
RadiusNeighborsRegressor — scikit-learn 1.6.1 d...
() array([[1., 0., 1.], [0., 1., 0.], [1., 0., 1.]]) score (...[[ 0 ], [ 1 ], [ 2 ], [ 3 ]] >>> y = [ 0 , 0 , 1 , 1 ] >>> from...scikit-learn.org/stable/modules/generated/sklearn.neighbors.RadiusNeighborsRegressor.html -
scale — scikit-learn 1.6.1 documentation
independently array([[-1., 1., 1.], [ 1., -1., -1.]]) >>> scale ( X...scale >>> X = [[ - 2 , 1 , 2 ], [ - 1 , 0 , 1 ]] >>> scale ( X ,...scikit-learn.org/stable/modules/generated/sklearn.preprocessing.scale.html -
Binarizer — scikit-learn 1.6.1 documentation
( X ) array([[1., 0., 1.], [1., 0., 0.], [0., 1., 0.]]) fit (...= [[ 1. , - 1. , 2. ], ... [ 2. , 0. , 0. ], ... [ 0. , 1. , -...scikit-learn.org/stable/modules/generated/sklearn.preprocessing.Binarizer.html -
Overview of multiclass training meta-estimators...
we use a UCI dataset [ 1 ] , generally referred as the...scikit-learn.org/stable/auto_examples/multiclass/plot_multiclass_overview.html -
LassoLars — scikit-learn 1.6.1 documentation
([[ - 1 , 1 ], [ 0 , 0 ], [ 1 , 1 ]], [ - 1 , 0 , - 1 ]) LassoLars(alpha=0.01)...sklearn.linear_model. LassoLars ( alpha = 1.0 , * , fit_intercept = True ,...scikit-learn.org/stable/modules/generated/sklearn.linear_model.LassoLars.html -
DictionaryLearning — scikit-learn 1.6.1 documen...
* || U || _1 , 1 ( U , V ) with || V_k || _2 <= 1 for all 0 <=...the Frobenius norm and ||.||_1,1 stands for the entry-wise matrix...scikit-learn.org/stable/modules/generated/sklearn.decomposition.DictionaryLearning.html -
Lars — scikit-learn 1.6.1 documentation
n_nonzero_coefs = 1 ) >>> reg . fit ([[ - 1 , 1 ], [ 0 , 0 ], [ 1 , 1 ]], [...[ - 1.1111 , 0 , - 1.1111 ]) Lars(n_nonzero_coefs=1) >>> print...scikit-learn.org/stable/modules/generated/sklearn.linear_model.Lars.html -
MultiLabelBinarizer — scikit-learn 1.6.1 docume...
fit_transform ([( 1 , 2 ), ( 3 ,)]) array([[1, 1, 0], [0, 0, 1]]) >>> mlb...{ 'comedy' }]) array([[0, 1, 1], [1, 0, 0]]) >>> list ( mlb ....scikit-learn.org/stable/modules/generated/sklearn.preprocessing.MultiLabelBinarizer.html -
Developer’s Guide — scikit-learn 1.6.1 document...
Contributing- Ways to contribute, Automated Contributions Policy, Submitting a bug report or a feature request- How to make a good bug report., Contributing code- Video resources, How to contribute...scikit-learn.org/stable/developers/index.html -
ROC Curve with Visualization API — scikit-learn...
Scikit-learn defines a simple API for creating visualizations for machine learning. The key features of this API is to allow for quick plotting and visual adjustments without recalculation. In this...scikit-learn.org/stable/auto_examples/miscellaneous/plot_roc_curve_visualization_api.html