Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 1.01 KB

README.md

File metadata and controls

44 lines (26 loc) · 1.01 KB

Doc

This folder contains source code for the API documentation.

To generate the documentation in html format, run:

make clean && make html

You must have sphinx installed, otherwise, run:

pip install sphinx sphinx_rtd_theme

Then, open _build/html/index.html in a web browser to view the main page.

To document a new algorithm, add the following lines to the corresponding .rst file of the base class (e.g. lwbe.rst):

Contrastive Explainer
---------------------------

.. autoclass:: aix360.algorithms.contrastive.CEMExplainer
   :members:

Note: the dashes should match the subtitle length and the class should be the full import statement for that class.

Rebuild the docs to view your changes.

References