Skip to content

Commit 691f573

Browse files
Adding task transform tutorial, updating docs generation (#312)
* Add task transforms tutorial * Modify link * Add task transforms tutorial * Update Changelog.md * Replace mkdocs-pydocs with mkdocstrings. * Update docs requirements. * Update changelog. * fix latex renders Co-authored-by: seba-1511 <[email protected]>
1 parent 7b1b5d4 commit 691f573

File tree

97 files changed

+1702
-701
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+1702
-701
lines changed

CHANGELOG.md

+5

Makefile

+11-7
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,19 @@ alltests:
4343
make tests >>alltests.txt 2>&1
4444
make notravis-tests >>alltests.txt 2>&1
4545

46-
docs:
47-
rm -f docs/mkdocs.yml
46+
predocs:
4847
#python scripts/compile_paper_list.py
49-
cd docs && pydocmd build && pydocmd serve
48+
cp ./README.md docs/index.md
49+
cp ./CHANGELOG.md docs/changelog.md
50+
cp ./examples/vision/README.md docs/examples/vision.md
51+
cp ./examples/rl/README.md docs/examples/rl.md
52+
cp ./examples/optimization/README.md docs/examples/optim.md
5053

51-
docs-deploy:
52-
rm -f docs/mkdocs.yml
53-
#python scripts/compile_paper_list.py
54-
cd docs && pydocmd gh-deploy
54+
docs: predocs
55+
mkdocs serve
56+
57+
docs-deploy: predocs
58+
mkdocs gh-deploy
5559

5660
# https://dev.to/neshaz/a-tutorial-for-tagging-releases-in-git-147e
5761
release:

docs/source/CNAME docs/CNAME

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/changelog.md

+157

docs/docs/learn2learn.algorithms.md

+44

docs/docs/learn2learn.data.md

+64

docs/docs/learn2learn.gym.md

+72

docs/docs/learn2learn.md

+14

0 commit comments

Comments
 (0)