File size: 3,194 Bytes
4c32b9f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | site_name: CleanRL
theme:
name: material
features:
# - navigation.instant
- navigation.tracking
# - navigation.tabs
# - navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: light green
toggle:
icon: material/lightbulb
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: green
accent: deep orange
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
plugins:
- search
nav:
- Overview: index.md
- Get Started:
- get-started/installation.md
- get-started/basic-usage.md
- get-started/experiment-tracking.md
- get-started/examples.md
- get-started/benchmark-utility.md
- get-started/zoo.md
- RL Algorithms:
- rl-algorithms/overview.md
- rl-algorithms/ppo.md
- rl-algorithms/dqn.md
- rl-algorithms/c51.md
- rl-algorithms/ddpg.md
- rl-algorithms/sac.md
- rl-algorithms/td3.md
- rl-algorithms/ppg.md
- rl-algorithms/ppo-rnd.md
- rl-algorithms/rpo.md
- rl-algorithms/qdagger.md
- rl-algorithms/ppo-trxl.md
- rl-algorithms/pqn.md
- rl-algorithms/rainbow.md
- Advanced:
- advanced/hyperparameter-tuning.md
- advanced/resume-training.md
- Community:
- contribution.md
- cleanrl-supported-papers-projects.md
- Cloud Integration:
- cloud/installation.md
- cloud/submit-experiments.md
#adding git repo
repo_url: https://github.com/vwxyzjn/cleanrl
repo_name: vwxyzjn/cleanrl
#markdown_extensions
markdown_extensions:
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- abbr
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- admonition
- pymdownx.details
- attr_list
- md_in_html
- footnotes
- markdown_include.include:
base_path: docs
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.arithmatex:
generic: true
# - toc:
# permalink: true
# - markdown.extensions.codehilite:
# guess_lang: false
# - admonition
# - codehilite
# - extra
# - pymdownx.superfences:
# custom_fences:
# - name: mermaid
# class: mermaid
# format: !!python/name:pymdownx.superfences.fence_code_format ''
# - pymdownx.tabbed
extra_css:
- stylesheets/extra.css
# extra_javascript:
# - js/termynal.js
# - js/custom.js
#footer
extra:
social:
- icon: fontawesome/solid/envelope
link: mailto:costa.huang@outlook.com
- icon: fontawesome/brands/twitter
link: https://twitter.com/vwxyzjn
- icon: fontawesome/brands/github
link: https://github.com/vwxyzjn/cleanrl
copyright: Copyright © 2021, CleanRL. All rights reserved.
extra_javascript:
# - javascripts/mathjax.js
# - https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
|