-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
225 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.8" | ||
|
||
formats: | ||
- epub | ||
|
||
python: | ||
version: 3.8 | ||
install: | ||
- requirements: requirements/docs.txt | ||
- requirements: requirements/readthedocs.txt |
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,18 @@ | ||
{% extends "layout.html" %} | ||
|
||
{% block body %} | ||
|
||
<h1>Page Not Found</h1> | ||
<p> | ||
The page you are looking for cannot be found. | ||
</p> | ||
<p> | ||
If you just switched documentation versions, it is likely that the page you were on is moved. You can look for it in | ||
the content table left, or go to <a href="{{ pathto(root_doc) }}">the homepage</a>. | ||
</p> | ||
<p> | ||
If you cannot find documentation you want, please <a | ||
href="https://github.com/open-mmlab/mmpretrain/issues/new/choose">open an issue</a> to tell us! | ||
</p> | ||
|
||
{% endblock %} |
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,13 @@ | ||
.. role:: hidden | ||
:class: hidden-section | ||
.. currentmodule:: {{ module }} | ||
|
||
|
||
{{ name | underline}} | ||
|
||
.. autoclass:: {{ name }} | ||
:members: | ||
|
||
.. | ||
autogenerated from _templates/autosummary/class.rst | ||
note it does not have :inherited-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,14 @@ | ||
.. role:: hidden | ||
:class: hidden-section | ||
.. currentmodule:: {{ module }} | ||
|
||
|
||
{{ name | underline}} | ||
|
||
.. autoclass:: {{ name }} | ||
:members: | ||
:special-members: __call__ | ||
|
||
.. | ||
autogenerated from _templates/callable.rst | ||
note it does not have :inherited-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,13 @@ | ||
.. role:: hidden | ||
:class: hidden-section | ||
.. currentmodule:: {{ module }} | ||
|
||
|
||
{{ name | underline}} | ||
|
||
.. autoclass:: {{ name }} | ||
:members: transform | ||
|
||
.. | ||
autogenerated from _templates/callable.rst | ||
note it does not have :inherited-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
This file was deleted.
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,14 +1,10 @@ | ||
docutils==0.16.0 | ||
markdown>=3.4.0 | ||
myst_parser | ||
-e git+https://github.com/Westlake-AI/pytorch_sphinx_theme.git#egg=pytorch_sphinx_theme | ||
recommonmark | ||
sphinx==4.0.2 | ||
docutils==0.18.1 | ||
modelindex | ||
myst-parser | ||
git+https://github.com/Westlake-AI/pytorch_sphinx_theme.git#egg=pytorch_sphinx_theme | ||
sphinx==6.1.3 | ||
sphinx-copybutton | ||
sphinx-notfound-page | ||
sphinx_markdown_tables>=0.0.16 | ||
sphinx_rtd_theme==0.5.2 | ||
sphinx-tabs | ||
sphinxcontrib-jquery | ||
tabulate | ||
urllib3==1.26.15 |
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ numpy | |
opencv-python | ||
packaging | ||
pandas | ||
terminaltables | ||
scipy | ||
scikit-learn | ||
seaborn | ||
|