-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
67 lines (57 loc) · 1.69 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
site_name: ACM ML Bootcamp 2022
theme:
name: material
custom_dir: overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
logo: assets/ACM_Logo.png
favicon: assets/ACM_Logo.png
icon:
repo: fontawesome/brands/github
features:
- announce.dismiss
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- header.autohide
extra:
social:
- icon: fontawesome/brands/instagram
link: https://instagram.com/acmbpdc
- icon: fontawesome/brands/github
link: https://github.com/acmbpdc
- icon: fontawesome/brands/discord
link: https://discord.gg/DYQdxquYwP
repo_url: https://github.com/acmbpdc/ml-bootcamp-2022
repo_name: acmbpdc/ml-bootcamp-2022
copyright: Copyright © 2022 - ACM BITS Pilani Dubai Campus
nav:
- Home: index.md
- '1: Intro to Data Science and Python': ./01-intro-to-data-science-and-python/docs.ipynb
- '2: Data Preprocessing & Wrangling': ./02-data-preprocessing-and-wrangling/docs.ipynb
- '3: Model Building': ./03-model-building/docs.ipynb
- '4: Intro to Neural Networks': ./04-intro-to-neural-networks/docs.ipynb
- '5: Project': ./05-project/docs.ipynb
markdown_extensions:
- toc:
permalink: True
plugins:
- search
- mkdocs-jupyter:
include_source: True
edit_uri: ""