Skip to content

Commit

Permalink
Merge pull request #25 from AutoDQM/fixing_rtd_to_display_modules
Browse files Browse the repository at this point in the history
Fixing rtd to display modules
  • Loading branch information
chadfreer authored Jan 20, 2022
2 parents 521c075 + 17fade8 commit 850ba6a
Show file tree
Hide file tree
Showing 16 changed files with 139 additions and 185 deletions.
2 changes: 1 addition & 1 deletion autodqm_ml/data_formats/histogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ def normalize(self):

def clean(self):
"""
TODO
"""
pass
1 change: 0 additions & 1 deletion autodqm_ml/data_prep/data_fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,6 @@ def write_data(self):
def write_summary(self):
"""
Write summary json of configuration.
TODO
"""
return

53 changes: 53 additions & 0 deletions docs/source/algorithms.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
algorithms package
==================

Submodules
----------

algorithms.anomaly\_detection\_algorithm module
-----------------------------------------------

.. automodule:: algorithms.anomaly_detection_algorithm
:members:
:undoc-members:
:show-inheritance:

algorithms.autoencoder module
-----------------------------

.. automodule:: algorithms.autoencoder
:members:
:undoc-members:
:show-inheritance:

algorithms.ml\_algorithm module
-------------------------------

.. automodule:: algorithms.ml_algorithm
:members:
:undoc-members:
:show-inheritance:

algorithms.pca module
---------------------

.. automodule:: algorithms.pca
:members:
:undoc-members:
:show-inheritance:

algorithms.statistical\_tester module
-------------------------------------

.. automodule:: algorithms.statistical_tester
:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

.. automodule:: algorithms
:members:
:undoc-members:
:show-inheritance:
61 changes: 0 additions & 61 deletions docs/source/autodqm_ml.algorithms.rst

This file was deleted.

21 changes: 0 additions & 21 deletions docs/source/autodqm_ml.data_formats.rst

This file was deleted.

21 changes: 0 additions & 21 deletions docs/source/autodqm_ml.data_prep.rst

This file was deleted.

10 changes: 0 additions & 10 deletions docs/source/autodqm_ml.evaluation.rst

This file was deleted.

21 changes: 0 additions & 21 deletions docs/source/autodqm_ml.plotting.rst

This file was deleted.

40 changes: 0 additions & 40 deletions docs/source/autodqm_ml.rst

This file was deleted.

7 changes: 5 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

import os
import sys
#sys.path.insert(0, os.path.abspath('./../../autodqm_ml'))
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('./../../autodqm_ml'))
#sys.path.insert(0, os.path.abspath('.'))

# -- Project information -----------------------------------------------------

Expand Down Expand Up @@ -44,6 +44,9 @@
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
import sphinx_rtd_theme
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]


# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down
21 changes: 21 additions & 0 deletions docs/source/data_formats.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
data\_formats package
=====================

Submodules
----------

data\_formats.histogram module
------------------------------

.. automodule:: data_formats.histogram
:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

.. automodule:: data_formats
:members:
:undoc-members:
:show-inheritance:
21 changes: 21 additions & 0 deletions docs/source/data_prep.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
data\_prep package
==================

Submodules
----------

data\_prep.data\_fetcher module
-------------------------------

.. automodule:: data_prep.data_fetcher
:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

.. automodule:: data_prep
:members:
:undoc-members:
:show-inheritance:
10 changes: 10 additions & 0 deletions docs/source/evaluation.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
evaluation package
==================

Module contents
---------------

.. automodule:: evaluation
:members:
:undoc-members:
:show-inheritance:
10 changes: 5 additions & 5 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Welcome to autodqm_ml's documentation!
:maxdepth: 3
:caption: Contents:

autodqm_ml.algorithms
autodqm_ml.data_formats
autodqm_ml.data_prep
autodqm_ml.evaluation
autodqm_ml.plotting
algorithms
data_formats
data_prep
evaluation
plotting
modules

Indices and tables
Expand Down
4 changes: 2 additions & 2 deletions docs/source/modules.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
autodqm_ml
algorithms
==========

.. toctree::
:maxdepth: 4

autodqm_ml
algorithms
21 changes: 21 additions & 0 deletions docs/source/plotting.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
plotting package
================

Submodules
----------

plotting.plot\_tools module
---------------------------

.. automodule:: plotting.plot_tools
:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

.. automodule:: plotting
:members:
:undoc-members:
:show-inheritance:

0 comments on commit 850ba6a

Please sign in to comment.