- Sort Score
- Num 10 results
- Language All
- Labels All
Results 21 - 30 of 287 for pipe (1.22 seconds)
Filter
-
4. Metadata Routing — scikit-learn 1.8.0 docume...
= SelectKBest ( k = 2 ) >>> pipe = make_pipeline ( sel , lr )...cv_results = cross_validate ( ... pipe , ... X , ... y , ... cv = GroupKFold...scikit-learn.org/stable/metadata_routing.html -
quantile_transform — scikit-learn 1.8.0 documen...
scikit-learn.org/stable/modules/generated/sklearn.preprocessing.quantile_transform.html -
How to deploy NLP: Text embeddings and vector s...
as in a pipe, rather than by diffusion through...travels by bulk flow, as in a pipe, rather than by diffusion through...www.elastic.co/search-labs/blog/how-to-deploy-nlp-text-embeddings-and-vector-search -
7.3. Preprocessing data — scikit-learn 1.8.0 do...
random_state = 42 ) >>> pipe = make_pipeline ( StandardScaler...(), LogisticRegression ()) >>> pipe . fit ( X_train , y_train )...scikit-learn.org/stable/modules/preprocessing.html -
Introduction to the event loop in Node.js - IBM...
on ( 'pipe', (src) => { 08 logger.info( 'pipe event received,...WritableStream. on (pipe).callback:[ INFO ]: pipe event received,...developer.ibm.com/learningpaths/get-started-nodejs/intro-to-event-loops/ -
Release Highlights for scikit-learn 0.24 — scik...
the latest version (with pip): pip install -- upgrade scikit...fetch_covtype ( return_X_y = True ) pipe = make_pipeline ( MinMaxScaler...scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_0_24_0.html -
getting_started.rst.txt
create a pipeline object >>> pipe = make_pipeline( ... StandardScaler(),...# fit the whole pipeline >>> pipe.fit(X_train, y_train) Pipel...scikit-learn.org/stable/_sources/getting_started.rst.txt -
Comparing Target Encoder with Other Encoders — ...
pipe ): result = cross_validate ( pipe , X , y , scoring...categorical_features ), ] ) pipe = make_pipeline ( preprocessor...scikit-learn.org/stable/auto_examples/preprocessing/plot_target_encoder.html -
Fine-tuning IBM Granite language models for ent...
tmux new -s ilab-sdg-session \; pipe-pane -o "cat > /var/home/cl...training. tmux new -s ilab-train \; pipe-pane -o "cat > /var/home/cloud-user/...developer.ibm.com/tutorials/awb-fine-tuning-granite-models-for-enterprise-apps-using-rhel-ai/ -
Balance model complexity and cross-validated sc...
pipe = Pipeline ( [ ( "reduce_dim"...model. grid = GridSearchCV ( pipe , # Use a non-stratified CV...scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_refit_callable.html