I'm using docstrings with sphinx
for documenting a project. It's working generally fine but as you see in the below image, I'm losing a lot of space in the "parameters" section.
Is there a way to remove that "parameters" while keeping it in the class docstring? Or leaving a blank line and indenting each parameter to the left? I've tried several options but they don't seem to have effect on this style
EDIT: This is what the docstring looks like:
class GASearchCV(ClassifierMixin, RegressorMixin):
"""
Evolutionary optimization over hyperparameters.
Long description..
"""
def __init__(self,
estimator):
"""
Parameters
----------
estimator : estimator object, default=None
estimator object implementing 'fit'
The object to use to fit the data.
"""
Thanks!