From 1209c6992e3e082da8cbafcfd5d8245d2e6f9f72 Mon Sep 17 00:00:00 2001
From: Robert Bach <95854748+baobach@users.noreply.github.com>
Date: Fri, 11 Oct 2024 15:48:42 +0700
Subject: [PATCH] docs: fix reference and update title
---
docs/EnsembleModels.rst | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/EnsembleModels.rst b/docs/EnsembleModels.rst
index bbd7e27..5b4dd6f 100644
--- a/docs/EnsembleModels.rst
+++ b/docs/EnsembleModels.rst
@@ -1,8 +1,8 @@
.. _sb_bagging:
-###################################
-Sequentially Bootstrapped Ensembles
-###################################
+#########################
+Sequentially Bootstrapped
+#########################
In sampling section we have shown that sampling should be done by Sequential Bootstrapping.
``SequentiallyBootstrappedBaggingClassifier`` and ``SequentiallyBootstrappedBaggingRegressor`` classes extend `sklearn `_'s
@@ -11,13 +11,13 @@ In sampling section we have shown that sampling should be done by Sequential Boo
In order to build indicator matrix we need Triple Barrier Events (``samples_info_sets``) and price bars used to label
training data set. That is why ``samples_info_sets`` and ``price_bars`` are input parameters for classifier/regressor.
-To better understand the underlying method, you may be interested in reading the :ref:`sampling-seq-bootstrap`_ of **Mlfin.py** documentation.
+To better understand the underlying method, you may be interested in reading the :ref:`Sampling/Sequential Bootstrapping `.
Implementation
==============
-.. py:currentmodule:: mlfinlab.ensemble.sb_bagging
-.. automodule:: mlfinlab.ensemble.sb_bagging
+.. py:currentmodule:: mlfinpy.ensemble.sb_bagging
+.. automodule:: mlfinpy.ensemble.sb_bagging
:members: SequentiallyBootstrappedBaggingClassifier, SequentiallyBootstrappedBaggingRegressor
Example