@@ -2,16 +2,55 @@ site_name: Data Science in Python
2
2
theme :
3
3
name : ' material'
4
4
palette :
5
- primary : ' purple'
5
+ # primary: 'blue'
6
+ # Light mode
7
+ - media : " (prefers-color-scheme: light)"
8
+ scheme : default
9
+ primary : indigo
10
+ accent : indigo
11
+ toggle :
12
+ icon : material/toggle-switch-off-outline
13
+ name : Switch to dark mode
14
+ # Dark mode
15
+ - media : " (prefers-color-scheme: dark)"
16
+ scheme : slate
17
+ primary : blue
18
+ accent : blue
19
+ toggle :
20
+ icon : material/toggle-switch
21
+ name : Switch to light mode
6
22
7
23
nav :
8
24
- Introduction : index.md
25
+ - ML Process : process.md
26
+ - Datasets : datasets.md
27
+ - Data Exploration : data-exploration.md
28
+ - Data Preparation :
29
+ - Feature Preprocessing : data-preprocessing.md
30
+ - Feature Scaling : data-scaling.md
31
+ - Feature Engineering : data-engineering.md
32
+ - Class Imbalance : data-classimbalance.md
33
+ - Model Concepts : model-concepts.md
34
+ - Model Supervised :
35
+ - Classification : model-supervised1.md
36
+ - Regression : model-supervised2.md
37
+ - Model Unsupervised :
38
+ - Transformation : model-unsupervised1.md
39
+ - Clustering : model-unsupervised2.md
40
+ - One-Class : model-unsupervised3.md
41
+ - Distance : model-unsupervised4.md
42
+ - Recommender Systems :
43
+ - Association : rre-association.md
44
+ - Model Selection :
45
+ - Cross Validation : model-crossvalidation.md
46
+ - Model Tuning : model-tuning.md
47
+ - Model Evaluation : model-evaluation.md
48
+ - Model Explainability : model-explainability.md
49
+ - Model Persistence : persistence.md
9
50
10
51
repo_name : mapattacker/datascience
11
52
repo_url : https://github.com/mapattacker/datascience
12
53
13
54
markdown_extensions :
14
- - codehilite
15
- - pymdownx.emoji :
16
- emoji_index : !!python/name:materialx.emoji.twemoji
17
- emoji_generator : !!python/name:materialx.emoji.to_svg
55
+ - pymdownx.highlight
56
+ - pymdownx.superfences
0 commit comments