-
Notifications
You must be signed in to change notification settings - Fork 227
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
Hide placeholders in docs #195
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,96 +2,99 @@ Welcome to the torchao Documentation | |
======================================= | ||
|
||
**torchao** is an open-source library that provides the functionality | ||
to quantize and prune your models using native PyTorch. | ||
to quantize and prune your models using native PyTorch. Our documentation is under development | ||
with more content coming soon. | ||
|
||
.. grid:: 3 | ||
.. | ||
.. grid:: 3 | ||
|
||
.. grid-item-card:: :octicon:`file-code;1em` | ||
Getting Started | ||
:img-top: _static/img/card-background.svg | ||
:link: getting-started.html | ||
:link-type: url | ||
.. grid-item-card:: :octicon:`file-code;1em` | ||
Getting Started | ||
:img-top: _static/img/card-background.svg | ||
:link: getting-started.html | ||
:link-type: url | ||
|
||
Learn about how to get started with torchao | ||
and ts application in your projects. | ||
Learn about how to get started with torchao | ||
and ts application in your projects. | ||
|
||
.. grid-item-card:: :octicon:`file-code;1em` | ||
Concepts | ||
:img-top: _static/img/card-background.svg | ||
:link: dtypes.html | ||
:link-type: url | ||
.. grid-item-card:: :octicon:`file-code;1em` | ||
Concepts | ||
:img-top: _static/img/card-background.svg | ||
:link: dtypes.html | ||
:link-type: url | ||
|
||
Learn about the key torchao concepts such | ||
as dtypes, quantization, sparsity, among others. | ||
Learn about the key torchao concepts such | ||
as dtypes, quantization, sparsity, among others. | ||
|
||
.. grid-item-card:: :octicon:`file-code;1em` | ||
API Reference | ||
:img-top: _static/img/card-background.svg | ||
:link: api_ref_intro.html | ||
:link-type: url | ||
.. grid-item-card:: :octicon:`file-code;1em` | ||
API Reference | ||
:img-top: _static/img/card-background.svg | ||
:link: api_ref_intro.html | ||
:link-type: url | ||
|
||
A comprehensive reference for the torchao | ||
API and its functionalities. | ||
A comprehensive reference for the torchao | ||
API and its functionalities. | ||
|
||
Tutorials | ||
~~~~~~~~~ | ||
Tutorials | ||
~~~~~~~~~ | ||
|
||
Ready to experiment? Check out some of the | ||
torchao tutorials. | ||
Ready to experiment? Check out some of the | ||
torchao tutorials. | ||
|
||
.. customcardstart:: | ||
.. customcardstart:: | ||
|
||
.. customcarditem:: | ||
:header: Template Tutorial | ||
:card_description: A placeholder template for demo purposes | ||
:image: _static/img/generic-pytorch-logo.png | ||
:link: tutorials/template_tutorial.html | ||
:tags: template | ||
.. customcarditem:: | ||
:header: Template Tutorial | ||
:card_description: A placeholder template for demo purposes | ||
:image: _static/img/generic-pytorch-logo.png | ||
:link: tutorials/template_tutorial.html | ||
:tags: template | ||
|
||
.. customcardend:: | ||
.. customcardend:: | ||
|
||
|
||
.. ---------------------------------------------------------------------- | ||
.. Below is the toctree i.e. it defines the content of the left sidebar. | ||
.. Each of the entry below corresponds to a file.rst in docs/source/. | ||
.. ---------------------------------------------------------------------- | ||
|
||
.. toctree:: | ||
:glob: | ||
:maxdepth: 1 | ||
:caption: Getting Started | ||
:hidden: | ||
.. | ||
.. toctree:: | ||
:glob: | ||
:maxdepth: 1 | ||
:caption: Getting Started | ||
:hidden: | ||
|
||
overview | ||
getting-started | ||
overview | ||
getting-started | ||
|
||
.. toctree:: | ||
:glob: | ||
:maxdepth: 1 | ||
:caption: Concepts | ||
:hidden: | ||
.. toctree:: | ||
:glob: | ||
:maxdepth: 1 | ||
:caption: Concepts | ||
:hidden: | ||
|
||
dtypes | ||
quantization | ||
sparsity | ||
performant_kernels | ||
dtypes | ||
quantization | ||
sparsity | ||
performant_kernels | ||
|
||
.. toctree:: | ||
:glob: | ||
:maxdepth: 1 | ||
:caption: Tutorials | ||
:hidden: | ||
.. toctree:: | ||
:glob: | ||
:maxdepth: 1 | ||
:caption: Tutorials | ||
:hidden: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can maybe also remove "hidden" from line 93 since this is the only content that will be available on this landing page. |
||
|
||
tutorials/template_tutorial | ||
tutorials/template_tutorial | ||
svekars marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
.. toctree:: | ||
:glob: | ||
:maxdepth: 1 | ||
:caption: API Reference | ||
:hidden: | ||
|
||
api_ref_intro | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the api_ref_intro.rst file need to change:
to
So that link doesn't appear in blue: https://docs-preview.pytorch.org/pytorch/ao/195/index.html |
||
api_ref_sparsity | ||
api_ref_quantization | ||
api_ref_dtypes | ||
api_ref_kernel | ||
.. | ||
api_ref_kernel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe add a note here that this website in under development and more content is coming soon?