- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 181 - 190 of 3,230 for 1 (0.6 sec)
-
FactorAnalysis — scikit-learn 1.7.1 documentation
Added in version 1.0. See also PCA Principal component...Machine Learning, Algorithm 21.1. Christopher M. Bishop: Pattern...scikit-learn.org/stable/modules/generated/sklearn.decomposition.FactorAnalysis.html -
LocalOutlierFactor — scikit-learn 1.7.1 documen...
() array([[1., 0., 1.], [0., 1., 1.], [1., 0., 1.]]) predict...fit_predict ( X ) array([ 1, 1, -1, 1]) >>> clf . negative_outlier_factor_...scikit-learn.org/stable/modules/generated/sklearn.neighbors.LocalOutlierFactor.html -
ColumnTransformer — scikit-learn 1.7.1 document...
1. , 2. , 2. ], ... [ 1. , 1. , 0. , 1. ]]) >>> #...scikit-learn 1.1 Release Highlights for scikit-learn 1.1 Release Highlights...scikit-learn.org/stable/modules/generated/sklearn.compose.ColumnTransformer.html -
TimeSeriesSplit — scikit-learn 1.7.1 documentation
array ([[ 1 , 2 ], [ 3 , 4 ], [ 1 , 2 ], [ 3 , 4 ], [ 1 , 2 ], [...index=[0] Test: index=[1] Fold 1: Train: index=[0 1] Test: index=[2]...scikit-learn.org/stable/modules/generated/sklearn.model_selection.TimeSeriesSplit.html -
OrdinalEncoder — scikit-learn 1.7.1 documentation
inverse_transform ([[ 1 , 0 ], [ 0 , 1 ]]) array([['Male', 1], ['Female',... =- 1 ) . fit_transform ( X ) array([[ 1., 0.], [ 0., 1.], [...scikit-learn.org/stable/modules/generated/sklearn.preprocessing.OrdinalEncoder.html -
MiniBatchDictionaryLearning — scikit-learn 1.7....
* || 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.MiniBatchDictionaryLearning.html -
VotingClassifier — scikit-learn 1.7.1 documenta...
([[ - 1 , - 1 ], [ - 2 , - 1 ], [ - 3 , - 2 ], [ 1 , 1 ], [ 2...2 , 1 ], [ 3 , 2 ]]) >>> y = np . array ([ 1 , 1 , 1 , 2 , 2...scikit-learn.org/stable/modules/generated/sklearn.ensemble.VotingClassifier.html -
ShuffleSplit — scikit-learn 1.7.1 documentation
array ([ 1 , 2 , 1 , 2 , 1 , 2 ]) >>> rs = ShuffleSplit...Train: index=[1 3 0 4] Test: index=[5 2] Fold 1: Train: index=[4...scikit-learn.org/stable/modules/generated/sklearn.model_selection.ShuffleSplit.html -
PowerTransformer — scikit-learn 1.7.1 documenta...
data )) [[-1.316 -0.707] [ 0.209 -0.707] [ 1.106 1.414]] fit (...= ( X * lambda_ + 1 ) ** ( 1 / lambda_ ) - 1 elif X < 0 and lambda_...scikit-learn.org/stable/modules/generated/sklearn.preprocessing.PowerTransformer.html -
StandardScaler — scikit-learn 1.7.1 documentation
( data )) [[-1. -1.] [-1. -1.] [ 1. 1.] [ 1. 1.]] >>> print (...0 , 0 ], [ 0 , 0 ], [ 1 , 1 ], [ 1 , 1 ]] >>> scaler = StandardScaler...scikit-learn.org/stable/modules/generated/sklearn.preprocessing.StandardScaler.html