First functional with 100% coverage

This commit is contained in:
2022-11-05 20:00:18 +01:00
parent 3689852205
commit 8c03fc6b67
52 changed files with 94739 additions and 199 deletions

View File

@@ -6,29 +6,13 @@ This is an example on how to document the API of your own project.
.. currentmodule:: bayesclass
Estimator
=========
TAN
===
.. autosummary::
:toctree: generated/
:template: class.rst
TemplateEstimator
TAN
Transformer
===========
.. autosummary::
:toctree: generated/
:template: class.rst
TemplateTransformer
Predictor
=========
.. autosummary::
:toctree: generated/
:template: class.rst
TemplateClassifier

View File

@@ -315,7 +315,10 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
# intersphinx configuration
intersphinx_mapping = {
"python": ("https://docs.python.org/{.major}".format(sys.version_info), None),
"python": (
"https://docs.python.org/{.major}".format(sys.version_info),
None,
),
"numpy": ("https://docs.scipy.org/doc/numpy/", None),
"scipy": ("https://docs.scipy.org/doc/scipy/reference", None),
"matplotlib": ("https://matplotlib.org/", None),
@@ -332,4 +335,4 @@ sphinx_gallery_conf = {
def setup(app):
# a copy button to copy snippet of code from the documentation
app.add_javascript("js/copybutton.js")
app.add_js_file("js/copybutton.js")