@@ -254,50 +254,47 @@ For deep learning hyperparameter optimization with PyTorch Lightning:
254254
255255----
256256
257- Tips
258- ----
259-
260- .. grid :: 1 1 2 2
261- :gutter: 3
257+ Choosing the Right Integration
258+ ------------------------------
262259
263- * - Framework
264- - Integration Class
265- - Use Case
266- * - scikit-learn
267- - ``OptCV ``
268- - Classification, regression, pipelines
269- * - sktime
270- - ``ForecastingOptCV ``
271- - Time series forecasting
272- * - sktime
273- - ``TSCOptCV ``
274- - Time series classification
260+ .. list-table ::
261+ :header-rows: 1
262+ :widths: 25 25 50
263+
264+ * - Framework
265+ - Integration Class
266+ - Use Case
267+ * - scikit-learn
268+ - ``OptCV ``
269+ - Classification, regression, pipelines
270+ * - sktime
271+ - ``ForecastingOptCV ``
272+ - Time series forecasting
273+ * - sktime
274+ - ``TSCOptCV ``
275+ - Time series classification
275276 * - skforecast
276277 - ``SkforecastOptCV ``
277278 - Recursive time series forecasting
278- * - skpro
279- - ``SkproProbaRegExperiment ``
280- - Probabilistic regression
281- * - PyTorch Lightning
282- - ``TorchExperiment ``
283- - Deep learning models
284-
285- .. grid-item-card :: Match the interface
279+ * - skpro
280+ - ``SkproProbaRegExperiment ``
281+ - Probabilistic regression
282+ * - PyTorch Lightning
283+ - ``TorchExperiment ``
284+ - Deep learning models
286285
287- Use ``OptCV `` when you want sklearn-compatible behavior (fit/predict).
288- Use experiment classes when you want more control over the optimization loop.
289286
290- .. grid-item-card :: Consider evaluation cost
291-
292- Deep learning experiments are expensive. Use efficient optimizers like
293- ``BayesianOptimizer `` with fewer iterations (10-50 instead of 100+).
287+ Tips for Using Integrations
288+ ---------------------------
294289
295- .. grid-item-card :: Use appropriate CV strategies
290+ 1. **Match the interface **: Use ``OptCV `` when you want sklearn-compatible behavior
291+ (fit/predict). Use experiment classes when you want more control.
296292
297- Match your cross-validation to your problem: `` TimeSeriesSplit `` for
298- time series, stratified splits for imbalanced data .
293+ 2. ** Consider evaluation cost **: Deep learning experiments are expensive.
294+ Use efficient optimizers like `` BayesianOptimizer `` with fewer iterations .
299295
300- .. grid-item-card :: Start simple
296+ 3. **Use appropriate CV strategies **: Match your cross-validation to your problem
297+ (e.g., ``TimeSeriesSplit `` for time series, stratified splits for imbalanced data).
301298
302- Begin with ``RandomSearch `` to establish baselines before using
303- more sophisticated optimizers.
299+ 4. ** Start simple **: Begin with ``GridSearch `` or `` RandomSearch `` to establish
300+ baselines before using more sophisticated optimizers.
0 commit comments