- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 441 - 450 of 3,757 for 1 (0.47 sec)
-
PredefinedSplit — scikit-learn 1.7.2 documentation
1 , 1 ]) >>> test_fold = [ 0 , 1 , - 1 , 1 ] >>> ps...PredefinedSplit(test_fold=array([ 0, 1, -1, 1])) >>> for i , ( train_index...scikit-learn.org/stable/modules/generated/sklearn.model_selection.PredefinedSplit.html -
MultiTaskLassoCV — scikit-learn 1.7.2 documenta...
since version 1.7: n_alphas was deprecated in 1.7 and will be...since version 1.7: alphas=None was deprecated in 1.7 and will be...scikit-learn.org/stable/modules/generated/sklearn.linear_model.MultiTaskLassoCV.html -
KDTree — scikit-learn 1.7.2 documentation
query ( X [: 1 ], k = 3 ) >>> print ( ind ) #...indices of 3 closest neighbors [0 3 1] >>> print ( dist ) # distances...scikit-learn.org/stable/modules/generated/sklearn.neighbors.KDTree.html -
LeavePGroupsOut — scikit-learn 1.7.2 documentation
Test: index=[0 1], group=[1 2] Fold 1: Train: index=[1], group=[2]...array ([ 1 , 2 , 1 ]) >>> groups = np . array ([ 1 , 2 , 3 ])...scikit-learn.org/stable/modules/generated/sklearn.model_selection.LeavePGroupsOut.html -
OutlierMixin — scikit-learn 1.7.2 documentation
fit_predict ( X ) array([1., 1., 1.]) fit_predict ( X , y = None...labels for X. Returns -1 for outliers and 1 for inliers. Parameters...scikit-learn.org/stable/modules/generated/sklearn.base.OutlierMixin.html -
get_scorer — scikit-learn 1.7.2 documentation
1 , - 1 , - 0.5 , 2 ], ( - 1 , 1 )) >>> y = np...np . array ([ 0 , 1 , 1 , 0 , 1 ]) >>> classifier = DummyClassifier...scikit-learn.org/stable/modules/generated/sklearn.metrics.get_scorer.html -
normalize — scikit-learn 1.7.2 documentation
1 , 2 ], [ - 1 , 0 , 1 ]] >>> normalize (...if axis is 0). axis {0, 1}, default=1 Define axis used to normalize...scikit-learn.org/stable/modules/generated/sklearn.preprocessing.normalize.html -
LarsCV — scikit-learn 1.7.2 documentation
means 1 unless in a joblib.parallel_backend context. -1 means...all strings. Added in version 1.0. See also lars_path Compute...scikit-learn.org/stable/modules/generated/sklearn.linear_model.LarsCV.html -
LeaveOneOut — scikit-learn 1.7.2 documentation
array ([[ 1 , 2 ], [ 3 , 4 ]]) >>> y = np . array ([ 1 , 2 ]) >>>...0: Train: index=[1] Test: index=[0] Fold 1: Train: index=[0]...scikit-learn.org/stable/modules/generated/sklearn.model_selection.LeaveOneOut.html -
ClusterMixin — scikit-learn 1.7.2 documentation
fit_predict ( X ) array([1, 1, 1]) fit_predict ( X , y = None...) ... return self >>> X = [[ 1 , 2 ], [ 2 , 3 ], [ 3 , 4 ]] >>>...scikit-learn.org/stable/modules/generated/sklearn.base.ClusterMixin.html