-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update readthedocs yml to new style * Update index.rst for landscape paths * Update notebook * Add all variable, remove unnec docstring * Revert index.rst change * Update conf.py settings for toc overlap * Update notebook * Update badges The travis CI build status badge wasn't working, so it was removed. Used new badge for downloads * Run ruff on landscape code, fix typo * Update notebook code, add new userguide notebook, add to ToC * Update notebook * Formatting tweaks to notebooks * Return axes, figure objects with landscape viz code. Update notebooks * More notebook tweaking * Add basic viz end-to-end test --------- Co-authored-by: Michael Catanzaro <[email protected]>
- Loading branch information
1 parent
f58729c
commit 112665d
Showing
16 changed files
with
1,332 additions
and
249 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,34 @@ | ||
# -*- coding: utf-8 -*- | ||
import os | ||
import sys | ||
sys.path.insert(0, os.path.abspath('.')) | ||
from persim import __version__ | ||
|
||
sys.path.insert(0, os.path.abspath(".")) | ||
from sktda_docs_config import * | ||
|
||
project = u'Persim' | ||
copyright = u'2019, Nathaniel Saul' | ||
author = u'Nathaniel Saul' | ||
from persim import __version__ | ||
|
||
project = "Persim" | ||
copyright = "2019, Nathaniel Saul" | ||
author = "Nathaniel Saul" | ||
|
||
version = __version__ | ||
release = __version__ | ||
|
||
html_theme_options.update({ | ||
# Google Analytics info | ||
'ga_ua': 'UA-124965309-3', | ||
'ga_domain': '', | ||
'gh_url': 'scikit-tda/persim' | ||
}) | ||
language = "en" | ||
|
||
html_theme_options.update( | ||
{ | ||
"collapse_naviation": False, | ||
# Google Analytics info | ||
"ga_ua": "UA-124965309-3", | ||
"ga_domain": "", | ||
"gh_url": "scikit-tda/persim", | ||
} | ||
) | ||
|
||
html_short_title = project | ||
htmlhelp_basename = 'Persimdoc' | ||
htmlhelp_basename = "Persimdoc" | ||
|
||
autodoc_default_options = { | ||
'members': True | ||
} | ||
autodoc_default_options = {"members": False, "maxdepth": 1} | ||
|
||
autodoc_member_order = 'groupwise' | ||
autodoc_member_order = "groupwise" |
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
76 changes: 58 additions & 18 deletions
76
docs/notebooks/Persistence Landscapes and Machine Learning.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,9 +1,13 @@ | ||
from .images import * | ||
from .sliced_wasserstein import * | ||
from ._version import __version__ | ||
from .bottleneck import * | ||
from .wasserstein import * | ||
from .heat import * | ||
from .gromov_hausdorff import * | ||
from .heat import * | ||
from .images import * | ||
from .landscapes.approximate import PersLandscapeApprox | ||
from .landscapes.exact import PersLandscapeExact | ||
from .landscapes.transformer import PersistenceLandscaper | ||
from .sliced_wasserstein import * | ||
from .visuals import * | ||
from .wasserstein import * | ||
|
||
from ._version import __version__ | ||
__all__ = ["PersLandscapeApprox", "PersistenceLandscaper", "PersLandscapeExact"] |
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
Oops, something went wrong.