-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathmkdocs.yml
More file actions
45 lines (40 loc) · 1.16 KB
/
mkdocs.yml
File metadata and controls
45 lines (40 loc) · 1.16 KB
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
site_name: Reinforcement Learning
site_description: Introduction to reinforcement learning class, given at ISAE-Supaero
site_url: https://supaerodatascience.github.io/reinforcement-learning/
site_dir: site
strict: false
use_directory_urls: false
theme:
name: 'material'
palette:
primary: light blue
accent: light blue
logo: 'https://raw.githubusercontent.com/SupaeroDataScience/reinforcement-learning/master/favicon.ico'
favicon: 'https://raw.githubusercontent.com/SupaeroDataScience/reinforcement-learning/master/favicon.ico'
features:
- toc.autohide
- navigation.sections
repo_name: SupaeroDataScience/reinforcement-learning
repo_url: https://github.com/SupaeroDataScience/reinforcement-learning
# TODO: fill this out
nav:
- Overview: index.md
- Introduction to RL: RL0-intro.md
- Markov Decision Processes: RL1-MDP.md
- Solving MDPs: RL2-DP.md
- Evaluating policies: RL3-eval.md
- Model-free control: RL4-control.md
- Deep Q-Networks: RL5-DQN.md
markdown_extensions:
- markdown.extensions.codehilite:
guess_lang: false
- toc:
permalink: 🔗
- admonition
- codehilite
- extra
- attr_list
- pymdownx.details
- pymdownx.superfences
plugins:
- search