- Sort Score
- Num 10 results
- Language All
- Labels All
Results 31 - 40 of 287 for pipe (0.77 seconds)
Filter
-
3.2. Tuning the hyper-parameters of an estimato...
tion import SelectKBest >>> pipe = Pipeline ([ ... ( 'select'...>>> search = GridSearchCV ( pipe , param_grid , cv = 5 ) . fit...scikit-learn.org/stable/modules/grid_search.html -
Metadata Routing — scikit-learn 1.8.0 documenta...
pipe = SimplePipeline ( transformer...( sample_weight = True ), ) pipe . fit ( X , y , sample_weight...scikit-learn.org/stable/auto_examples/miscellaneous/plot_metadata_routing.html -
Displaying Pipelines — scikit-learn 1.8.0 docum...
] 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 -
grid_search.rst.txt
tion import SelectKBest >>> pipe = Pipeline([ ... ('select',...8]} >>> search = GridSearchCV(pipe, param_grid, cv=5).fit(X, y)...scikit-learn.org/stable/_sources/modules/grid_search.rst.txt -
Selecting dimensionality reduction with Pipelin...
load_digits ( return_X_y = True ) pipe = Pipeline ( [ ( "scaling" ,...f)" ] grid = GridSearchCV ( pipe , n_jobs = 1 , param_grid =...scikit-learn.org/stable/auto_examples/compose/plot_compare_reduction.html -
Replace Splunk with Elastic for logs, security,...
Query language Elastic's piped query language and engine, ES|QL...JSON-based DSL queries. Splunk's piped query language, SPL, allows...www.elastic.co/splunk-replacement -
Categorical Feature Support in Gradient Boostin...
for pipe in ( hist_dropped , hist_one_hot...hist_target , hist_native ): if pipe is hist_native : # The native...scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_categorical.html -
ES|QL reference | Elasticsearch Reference
Query Language (ES|QL) is a piped query language for filtering,...How does it work? ES|QL uses pipes ( | ) to manipulate and transform...www.elastic.co/docs/reference/query-languages/esql -
auto_examples_python.zip
pipe.set_params(max_depth=3, max_iter=15) else: pipe.set_params(... step=1)), ] ) pipe.fit(X, y) ranking = pipe.named_steps["rf...scikit-learn.org/stable/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip -
preprocessing.rst.txt
random_state=42) >>> pipe = make_pipeline(StandardScaler(),..., LogisticRegression()) >>> pipe.fit(X_train, y_train) # apply...scikit-learn.org/stable/_sources/modules/preprocessing.rst.txt