File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ applied to datasets to apply over sampling to their fit.
6767 :template: custom-class-template.rst
6868 :recursive:
6969
70- OverSampling
70+ OverSampler
7171
7272
73731D Data Structures
Original file line number Diff line number Diff line change 6565.. autosummary ::
6666 :toctree: generated/
6767
68- SetupAdapt
68+ AdaptImages
69+ AdaptImageMaker
Original file line number Diff line number Diff line change 4343 "sphinx.ext.intersphinx" ,
4444 "sphinx.ext.mathjax" ,
4545 "sphinx.ext.todo" ,
46- "sphinx.ext.napoleon" ,
4746 "sphinx.ext.viewcode" ,
48- "sphinx_autodoc_typehints" , # Automatically document param types (less noise in class signature)
47+ "sphinx.ext.napoleon" ,
4948 "numpydoc" ,
50- # External stuff
49+ "sphinx_autodoc_typehints" ,
50+ # external
5151 "myst_parser" ,
5252 "sphinx_copybutton" ,
5353 "sphinx_design" ,
8282autosummary_generate = True
8383autosummary_imported_members = True
8484autodoc_member_order = "bysource"
85- autodoc_default_flags = ["members" ]
85+ autodoc_default_options = {
86+ "members" : True ,
87+ "undoc-members" : True ,
88+ "show-inheritance" : True ,
89+ }
8690autodoc_class_signature = "separated"
8791autoclass_content = "init"
8892
133137from sphinx .builders .html import StandaloneHTMLBuilder
134138
135139StandaloneHTMLBuilder .supported_image_types = ["image/gif" , "image/png" , "image/jpeg" ]
140+
141+ typehints_fully_qualified = False
142+ always_document_param_types = False
143+ typehints_document_rtype = False
You can’t perform that action at this time.
0 commit comments