-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmkdocs.yml
78 lines (78 loc) · 2.07 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
71
72
73
74
75
76
77
78
site_name: Practical NLP
site_description: A practical course on natural language processing @ HTWG Konstanz.
repo_url: https://github.com/pkeilbach/htwg-practical-nlp
repo_name: pkeilbach/htwg-practical-nlp
theme:
name: material
language: en
features:
- content.tooltips
- navigation.indexes
- navigation.instant
- navigation.tabs
- navigation.top
- toc.follow
palette:
primary: cyan
accent: blue
icon:
repo: fontawesome/brands/git-alt
plugins:
- search:
lang: en
extra:
social:
- icon: fontawesome/solid/paper-plane
link: mailto:pascal.keilbach@htwg-konstanz.de
- icon: fontawesome/brands/github
link: https://github.com/pkeilbach/htwg-practical-nlp
markdown_extensions:
- abbr
- admonition
- attr_list
- footnotes
- toc:
permalink: true
toc_depth: 3
- pymdownx.arithmatex:
generic: true
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
watch:
- includes
nav:
- Welcome: index.md
- About: course_profile.md
- Getting Started: getting_started.md
- Lectures:
- lectures/preface.md
- Introduction: lectures/introduction.md
- lectures/preprocessing.md
- lectures/feature_extraction.md
- lectures/logistic_regression.md
- lectures/naive_bayes.md
- lectures/vector_space_models.md
- lectures/minimum_edit_distance.md
- lectures/language_models.md
- lectures/word_embeddings.md
- lectures/sequence_models.md
- lectures/attention_models.md
- lectures/further_reading.md
- Assignments: assignments.md
- Presentations: presentations.md
- FAQ: faq.md
- Exam: exam.md