-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
70 lines (60 loc) · 1.93 KB
/
mkdocs.yml
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
# Project information
site_name: Behavior Generation Lecture Python
site_url:
site_author: Organizers of the lecture Decision-Making and Motion Planning for Automated Driving at KIT
site_description: >-
Python Code for the Lecture Decision-Making and Motion Planning for Automated Driving at KIT
# Repository
repo_name: KIT-MRT/behavior_generation_lecture_python
repo_url: https://github.com/KIT-MRT/behavior_generation_lecture_python
edit_uri: ""
# Copyright
copyright: Copyright © 2015 - present, Organizers of the lecture Decision-Making and Motion Planning for Automated Driving at KIT
# Configuration
theme:
name: material
# Static files
static_templates:
- 404.html
font: false
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
markdown_extensions:
- admonition
- pymdownx.keys
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.snippets:
check_paths: true
nav:
- Home: index.md
- Code Examples for Lecture:
- Compare Dynamic One Track Models: notebooks/compare_models_notebook.ipynb
- Lateral Control (state-based): notebooks/lateral_control_state_based_notebook.ipynb
- Lateral Control (Riccati): notebooks/lateral_control_riccati_notebook.ipynb
- Graph Search: notebooks/a_star_notebook.ipynb
- Decision Making:
- Value Iteration: notebooks/mdp_value_iteration.ipynb
- Q-Learning: notebooks/mdp_q_learning.ipynb
- Policy Gradient: notebooks/mdp_policy_gradient.ipynb
- API Documentation (partial): reference/
plugins:
- search
- mkdocs-jupyter:
include_source: True
execute: True
- mkdocstrings:
handlers:
python:
rendering:
show_if_no_docstring: true
show_signature_annotations: true
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
# Catch warnings in CI
strict: true