-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolved warnings during document generation. (#408)
* Resolve warning. * Resolve warning. * Add docstrfmt. * Format by docstrfmt. * Remove -s inc . * Remove search-field . * Fix for docstrfmt. --------- Co-authored-by: Yoshiaki Bando <[email protected]>
- Loading branch information
1 parent
6493bcc
commit 5a2884b
Showing
14 changed files
with
211 additions
and
193 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,41 +1,48 @@ | ||
Hyperparameter Optimization | ||
=========================== | ||
|
||
|
||
Algorithms | ||
---------- | ||
|
||
.. currentmodule:: aiaccel.hpo.algorithms | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
:toctree: generated/ | ||
|
||
NelderMeadAlgorism | ||
NelderMeadAlgorism | ||
|
||
Optuna Utilities | ||
---------------- | ||
|
||
Samplers | ||
^^^^^^^^ | ||
~~~~~~~~ | ||
|
||
.. currentmodule:: aiaccel.hpo.optuna.samplers | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
:toctree: generated/ | ||
|
||
NelderMeadSampler | ||
NelderMeadSampler | ||
|
||
Suggest Wrappers | ||
^^^^^^^^^^^^^^^^ | ||
~~~~~~~~~~~~~~~~ | ||
|
||
.. currentmodule:: aiaccel.hpo.optuna.suggest_wrapper | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
|
||
Suggest | ||
Const | ||
SuggestFloat | ||
SuggestInt | ||
SuggestCategorical | ||
SuggestDiscreteUniform | ||
SuggestLogUniform | ||
SuggestUniform | ||
.. lightning.OptimizerLightningModule | ||
.. lightning.OptimizerConfig | ||
:toctree: generated/ | ||
|
||
Suggest | ||
Const | ||
SuggestFloat | ||
SuggestInt | ||
SuggestCategorical | ||
SuggestDiscreteUniform | ||
SuggestLogUniform | ||
SuggestUniform | ||
|
||
.. | ||
lightning.OptimizerLightningModule | ||
.. | ||
lightning.OptimizerConfig |
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,12 +1,9 @@ | ||
|
||
************* | ||
API Reference | ||
************* | ||
|
||
============= | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:maxdepth: 2 | ||
|
||
torch | ||
hpo | ||
utils | ||
torch | ||
hpo | ||
utils |
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,32 +1,36 @@ | ||
PyTorch/Lightning Toolkit | ||
========================= | ||
|
||
|
||
Datasets | ||
-------- | ||
|
||
.. currentmodule:: aiaccel.torch.datasets | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
:toctree: generated/ | ||
|
||
CachedDataset | ||
HDF5Dataset | ||
RawHDF5Dataset | ||
CachedDataset | ||
HDF5Dataset | ||
RawHDF5Dataset | ||
|
||
Dataset Utilities | ||
----------------- | ||
|
||
.. currentmodule:: aiaccel.torch.datasets | ||
.. autosummary:: | ||
:toctree: generated/ | ||
|
||
scatter_dataset | ||
.. autosummary:: | ||
:toctree: generated/ | ||
|
||
scatter_dataset | ||
|
||
Lightning Utilities | ||
------------------- | ||
|
||
.. currentmodule:: aiaccel.torch.lightning | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
:toctree: generated/ | ||
|
||
ABCIEnvironment | ||
OptimizerLightningModule | ||
OptimizerConfig | ||
ABCIEnvironment | ||
OptimizerLightningModule | ||
OptimizerConfig |
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,13 +1,13 @@ | ||
Miscellaneous Utilities | ||
======================= | ||
|
||
|
||
Config Utilities | ||
---------------- | ||
|
||
.. currentmodule:: aiaccel.utils | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
:toctree: generated/ | ||
|
||
print_config | ||
pathlib2str_config | ||
print_config | ||
pathlib2str_config |
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,11 +1,10 @@ | ||
Contribution Guide | ||
================== | ||
|
||
Thank you for contributing to aiaccel! | ||
This document introduces how to contribute. | ||
Thank you for contributing to aiaccel! This document introduces how to contribute. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:maxdepth: 2 | ||
|
||
issues | ||
pull_requests | ||
issues | ||
pull_requests |
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,76 +1,71 @@ | ||
.. aiaccel-dev documentation master file, created by | ||
sphinx-quickstart on Mon Jan 18 15:46:13 2021. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
.. | ||
aiaccel-dev documentation master file, created by | ||
sphinx-quickstart on Mon Jan 18 15:46:13 2021. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
Aiaccel | ||
======= | ||
|
||
AIST toolkit for accelerating machine learning research. | ||
|
||
|
||
:octicon:`cpu;1em;sd-text-primary` High-Performance Computing (HPC) | ||
Intended to use in the HPC clusters including AI Bridging Cloud Infrastructure (ABCI). | ||
Intended to use in the HPC clusters including AI Bridging Cloud Infrastructure | ||
(ABCI). | ||
|
||
:octicon:`server;1em;sd-text-primary` Highly Modular Design | ||
Designed to let you pick up any part of aiaccel with minimal dependencies as you prefer. | ||
Designed to let you pick up any part of aiaccel with minimal dependencies as you | ||
prefer. | ||
|
||
:octicon:`zap;1em;sd-text-primary` High Compatibility | ||
Compatible with the modern standard frameworks such as PyTorch Lightning and Optuna. | ||
|
||
Compatible with the modern standard frameworks such as PyTorch Lightning and Optuna. | ||
|
||
.. grid:: | ||
|
||
.. grid-item-card:: PyTorch/Lightning Toolkit | ||
:link: api_reference/torch.html | ||
|
||
Training toolkit for HPC clusters. | ||
.. grid-item-card:: PyTorch/Lightning Toolkit | ||
:link: api_reference/torch.html | ||
|
||
.. grid-item-card:: Hyperparameter Optimization (HPO) | ||
:link: api_reference/hpo.html | ||
|
||
Ready-to-use HPO algorithms/tools. | ||
Training toolkit for HPC clusters. | ||
|
||
.. grid-item-card:: Hyperparameter Optimization (HPO) | ||
:link: api_reference/hpo.html | ||
|
||
Ready-to-use HPO algorithms/tools. | ||
|
||
Getting Started | ||
-------- | ||
--------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
getting_started.md | ||
:maxdepth: 2 | ||
|
||
getting_started.md | ||
|
||
User Guide | ||
-------- | ||
---------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
user_guide/index.rst | ||
:maxdepth: 2 | ||
|
||
user_guide/index.rst | ||
|
||
API Reference | ||
-------- | ||
|
||
------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
api_reference/index.rst | ||
:maxdepth: 2 | ||
|
||
api_reference/index.rst | ||
|
||
Contribution Guide | ||
-------- | ||
------------------ | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
contribution_guide/index.rst | ||
:maxdepth: 2 | ||
|
||
contribution_guide/index.rst | ||
|
||
Acknowledgments | ||
-------- | ||
* Part of this work was developed under a commissioned project of the New Energy and Industrial Technology Development Organization (NEDO). | ||
--------------- | ||
|
||
- Part of this work was developed under a commissioned project of the New Energy and | ||
Industrial Technology Development Organization (NEDO). |
Oops, something went wrong.