forked from flyteorg/flytekit
-
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.
DOC-648 Add pages for Neptune and W&B plugins (flyteorg#2803)
* add pages for neptune and wandb plugins Signed-off-by: nikki everett <[email protected]> * add autosummary sections to init files Signed-off-by: nikki everett <[email protected]> * don't render the TOC twice Signed-off-by: nikki everett <[email protected]> --------- Signed-off-by: nikki everett <[email protected]>
- Loading branch information
Showing
5 changed files
with
53 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.. _neptune: | ||
|
||
################################################### | ||
Neptune API reference | ||
################################################### | ||
|
||
.. tags:: Integration | ||
|
||
.. automodule:: flytekitplugins.neptune | ||
:no-members: | ||
:no-inherited-members: | ||
:no-special-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.. _wandb: | ||
|
||
################################################### | ||
Weights & Biases API reference | ||
################################################### | ||
|
||
.. tags:: Integration | ||
|
||
.. automodule:: flytekitplugins.wandb | ||
:no-members: | ||
:no-inherited-members: | ||
:no-special-members: |
12 changes: 12 additions & 0 deletions
12
plugins/flytekit-neptune/flytekitplugins/neptune/__init__.py
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,3 +1,15 @@ | ||
""" | ||
.. currentmodule:: flytekitplugins.neptune | ||
This package contains things that are useful when extending Flytekit. | ||
.. autosummary:: | ||
:template: custom.rst | ||
:toctree: generated/ | ||
neptune_init_run | ||
""" | ||
|
||
from .tracking import neptune_init_run | ||
|
||
__all__ = ["neptune_init_run"] |
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,3 +1,15 @@ | ||
""" | ||
.. currentmodule:: flytekitplugins.wandb | ||
This package contains things that are useful when extending Flytekit. | ||
.. autosummary:: | ||
:template: custom.rst | ||
:toctree: generated/ | ||
wandb_init | ||
""" | ||
|
||
from .tracking import wandb_init | ||
|
||
__all__ = ["wandb_init"] |