forked from deepchecks/deepchecks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixing deployment * replaced SEMANTIC_VERSIONING_RE with PYTHON_VERSIONING_RE * Documentation fixes (refactoring) (deepchecks#876) * docs refactoring * code-style fixes Co-authored-by: Yurii Romanyshyn <[email protected]> Co-authored-by: Yurii Romanyshyn <[email protected]>
- Loading branch information
1 parent
0ffe328
commit fbd8e46
Showing
26 changed files
with
234 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.4.2 | ||
0.5.0.dev0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{% extends "autosummary/module.rst" %} | ||
|
||
{% block header %} | ||
{{ name | escape | title | underline }} | ||
{{ name | escape | underline }} | ||
{% endblock %} | ||
|
||
{% block classes %} | ||
{% if classes %} | ||
.. rubric:: {{ _('Classes') }} | ||
{% block members %} | ||
{% if members %} | ||
.. rubric:: {{ _('Classes') }} | ||
|
||
.. autosummary:: | ||
:template: autosummary/check.rst | ||
:toctree: | ||
{% for item in classes %} | ||
{{ item }} | ||
{% endfor %} | ||
{% endif %} | ||
{% endblock classes %} | ||
.. autosummary:: | ||
:template: autosummary/check.rst | ||
:toctree: | ||
{% for item in members %} | ||
{{ item }} | ||
{% endfor %} | ||
{% endif %} | ||
{% endblock members %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
checks | ||
====== | ||
|
||
.. automodule:: deepchecks.tabular.checks | ||
|
||
.. currentmodule:: deepchecks.tabular.checks | ||
|
||
.. rubric:: Modules | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
:template: autosummary/check-module.rst | ||
|
||
distribution | ||
integrity | ||
methodology | ||
overview | ||
performance |
27 changes: 14 additions & 13 deletions
27
docs/source/api/tabular.rst → docs/source/api/deepchecks.tabular.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,32 @@ | ||
Tabular | ||
======= | ||
|
||
.. py:module:: deepchecks.tabular | ||
deepchecks.tabular | ||
================== | ||
|
||
.. automodule:: deepchecks.tabular | ||
|
||
.. currentmodule:: deepchecks.tabular | ||
|
||
.. rubric:: Modules and Classes | ||
.. rubric:: Modules | ||
|
||
.. autosummary:: | ||
:recursive: | ||
:toctree: generated | ||
:caption: Modules | ||
|
||
checks | ||
suites | ||
datasets | ||
|
||
.. rubric:: Classes | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
:caption: Classes | ||
|
||
Dataset | ||
Context | ||
Check | ||
SingleDatasetBaseCheck | ||
TrainTestBaseCheck | ||
ModelOnlyBaseCheck | ||
Suite | ||
SingleDatasetCheck | ||
TrainTestCheck | ||
ModelOnlyCheck | ||
ModelComparisonContext | ||
ModelComparisonCheck | ||
ModelComparisonSuite | ||
|
||
|
||
ModelComparisonSuite |
Oops, something went wrong.