- Sort Score
- Num 10 results
- Language All
- Labels All
Results 21 - 30 of 362 for pipe (1.01 seconds)
Filter
-
4. Metadata Routing — scikit-learn 1.8.0 ...
SelectKBest ( k = 2 ) >>> pipe = make_pipeline ( sel , lr )...cv_results = cross_validate ( ... pipe , ... X , ... y , ... cv = GroupKFold...scikit-learn.org/stable/metadata_routing.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 -
How Messaging simplifies and strengthens your m...
developer.ibm.com/articles/how-messaging-simplifies-strengthens-microservice-applications/ -
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/ -
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 -
Release Highlights for scikit-learn 0.24 —...
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 -
3.2. Tuning the hyper-parameters of an estimato...
import SelectKBest >>> pipe = Pipeline ([ ... ( 'select'...>>> search = GridSearchCV ( pipe , param_grid , cv = 5 ) . fit...scikit-learn.org/stable/modules/grid_search.html -
Displaying Pipelines — scikit-learn 1.8.0...
] pipe = Pipeline ( steps ) pipe # click on the..."linear" ))] pipe = Pipeline ( steps ) pipe # click on the...scikit-learn.org/stable/auto_examples/miscellaneous/plot_pipeline_display.html -
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