Skip to content

Commit cac45f6

Browse files
committed
Add recommender systems
1 parent 4a12c9e commit cac45f6

File tree

1 file changed

+44
-5
lines changed

1 file changed

+44
-5
lines changed

mkdocs.yml

+44-5
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,55 @@ site_name: Data Science in Python
22
theme:
33
name: 'material'
44
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
622

723
nav:
824
- 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
950

1051
repo_name: mapattacker/datascience
1152
repo_url: https://github.com/mapattacker/datascience
1253

1354
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

Comments
 (0)