-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
78 lines (73 loc) · 1.73 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
site_name: Machine Learning Foundations
theme:
name: material
logo: assets/images/logo.png
features:
#- navigation.tabs
- header.autohide
- navigation.indexes
nav:
- Home: index.md
- Week-1:
- week-1/outline.md
- week-1/linear_algebra.md
- week-1/ml_problem.md
- week-1/dataset.md
- Week-2:
- None
- Week-3:
- week-3/outline.md
- week-3/linear_model.md
- week-3/system_1.md
- week-3/system_2.md
- week-3/least_squares.md
- week-3/best_fit.md
- week-3/projections.md
- Week-4:
- week-4/outline.md
- week-4/transformations.md
- week-4/eigenvectors.md
- week-4/char_polynomial.md
- week-4/computation.md
- week-4/diagonalization.md
- week-4/tests_diagonal.md
- week-4/fibonacci.md
- Week-5:
- week-5/complex_numbers.md
- week-5/complex_vectors.md
- Appendix:
- appendix/gradients.md
- appendix/cauchy_schwarz.md
- appendix/rank_one.md
- appendix/matrix_product.md
- appendix/properties.md
- appendix/density_estimation.md
- Slides:
- slides/links.md
- Contribute: contribute.md
markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.arithmatex:
generic: true
- toc:
permalink: true
- def_list
- attr_list
- md_in_html
- admonition
- footnotes
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
plugins:
- search
- mkdocs-video:
is_video: True
video_autoplay: True
css_style:
width: "100%"