Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix docs build? #141

Merged
merged 4 commits into from
Jun 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Setup Pages
uses: actions/configure-pages@v2
- uses: pdm-project/setup-pdm@v3
Expand All @@ -37,7 +39,7 @@ jobs:
cache: true
cache-dependency-path: '**/pdm.lock'
- name: Install dependencies
run: pdm install -d -G ci
run: pdm install -d -G ci && pdm torch install cpu
- name: Build docs
run: cd docs && make deploy
- name: Upload artifact
Expand Down
12 changes: 6 additions & 6 deletions docs/callbacks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ Checkpointing
Logging callbacks and utilities
-------------------------------

.. currentmodule:: emote.callbacks.logging
.. automodule:: emote.callbacks.logging
.. currentmodule:: emote.callbacks
.. automodule:: emote.callbacks

.. autosummary::
:toctree: generated

LoggingMixin
TensorboardLogger
TerminalLogger
WBLogger
logging.LoggingMixin
logging.TensorboardLogger
logging.TerminalLogger
wb_logger.WBLogger

Testing
-------
Expand Down