-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
68 lines (57 loc) · 1.64 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
site_name: ACM ML Bootcamp 2023
remote_branch: gh-pages
theme:
name: material
custom_dir: overrides # has a customised download button
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
logo: assets/ACM_Logo.png
favicon: assets/favicon.ico
icon:
repo: fontawesome/brands/github
features:
- 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-2023
repo_name: acmbpdc/ml-bootcamp-2023
copyright: Copyright © 2023 - ACM BITS Pilani Dubai Campus
nav:
- Home: index.md
- Sessions:
- '1. Data Preprocessing': './01-data-preprocessing/docs.ipynb'
- '2. Model Building I': './02-model-building-i/docs.ipynb'
- '3. Model Building II': './03-model-building-ii/docs.ipynb'
- '4. Evaluating and Tuning': './04-evaluating-and-tuning/docs.ipynb'
markdown_extensions:
- toc:
permalink: True
plugins:
- search
- mkdocs-jupyter:
include_source: True
edit_uri: ""