-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
249 lines (223 loc) · 8.06 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# Project information
site_name: Data Science Interview preparation
site_author: Kuldeep Singh Sidhu
site_description: >-
This is a completely open-source platform for
maintaining curated list of interview questions
and answers for people looking and preparing
for data science opportunities.
# Repository
repo_name: singhsidhukuldeep/singhsidhukuldeep.github.io
repo_url: https://github.com/singhsidhukuldeep/singhsidhukuldeep.github.io
# extra_javascript:
# - 'javascripts/xfile.js'
extra_css:
- 'stylesheets/extra.css'
extra:
generator: false
social:
- icon: octicons/mark-github-16
link: https://github.com/singhsidhukuldeep/
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/singhsidhukuldeep
- icon: fontawesome/brands/x-twitter
link: https://twitter.com/kuldeep_s_s
- icon: fontawesome/brands/stack-overflow
link: https://stackoverflow.com/u/7182350/
- icon: hf-logo-pirate
link: https://huggingface.co/singhsidhukuldeep
- icon: octicons/globe-16
link: http://kuldeepsinghsidhu.com
analytics:
provider: google
property: G-EVGNTG49J7
# consent:
# title: Cookie Consent <br><small>Help Us ✌️, Help You 🫵</small>
# actions:
# - accept
# - manage
# cookies:
# analytics:
# name: Google
# checked: true
# github:
# name: GitHub
# checked: true
# description: >-
# We use cookies to recognize your repeated visits and preferences, improve and offer better services🤗
# <br>
# With your consent🤝, you're helping us to give you better experience.
# <br>
# <a herf="https://singhsidhukuldeep.github.io/privacy">Read about privacy policy here<a>
theme:
name: material
custom_dir: overrides
features:
# - announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- search.highlight
- search.share
- search.suggest
- content.tooltips
- navigation.instant.progress
- navigation.path
- navigation.top
- toc.follow
icon:
logo: fontawesome/solid/terminal
repo: fontawesome/brands/git-alt
# favicon: fontawesome/solid/terminal
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: deep purple
accent: purple
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: deep purple
accent: purple
scheme: slate
toggle:
icon: material/weather-night
name: Switch to system preference
#plugins
plugins:
# - optimize
- enumerate-headings:
toc_depth: 6
strict: true
increment_across_pages: false
include:
- "Interview-Questions/*"
- "Cheat-Sheets/*"
exclude:
- "Interview-Questions/Interview-Questions.md"
# - another_page.md
restart_increment_after:
- Interview-Questions/*"
- search:
lang:
- en
# - privacy:
# cache: false
- git-revision-date-localized:
type: date
- minify:
minify_html: true
- mkdocs-jupyter: #https://github.com/danielfrg/mkdocs-jupyter
execute: false
- with-pdf:
enabled_if_env: ENABLE_PDF_EXPORT
cover_logo: https://repository-images.githubusercontent.com/275878203/13719500-bb75-11ea-8f3a-be2ffb87a6a2
copyright: Copyright © 2020 - 2024 Kuldeep Singh Sidhu
cover_title: The Data Science Book
cover_subtitle: https://singhsidhukuldeep.github.io
output_path: /workspace/singhsidhukuldeep.github.io/pdf_output/DataScience.pdf
back_cover: true
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
- meta
- codehilite
- admonition
- pymdownx.details
- pymdownx.superfences
# Page tree
nav:
- 🏡 Home: index.md
# - 😬 Introduction: Introduction.md
# - 📅 Suggested Learning Paths: Suggested-Learning-Paths.md
- 👨🏿🏫 Interview Questions:
# - 👨🏿🏫 Interview Questions: Interview-Questions/Interview-Questions.md
- DSA (Data Structures & Algorithms): Interview-Questions/data-structures-algorithms.md
- System Design: Interview-Questions/System-design.md
- Natural Language Processing (NLP): Interview-Questions/Natural-Language-Processing.md
- Probability: Interview-Questions/Probability.md
- 📝 Cheat Sheets:
- Django: Cheat-Sheets/Django.md
- Flask: Cheat-Sheets/Flask.md
- Hypothesis Tests: Cheat-Sheets/Hypothesis-Tests.md
- Keras: Cheat-Sheets/Keras.md
- NumPy: Cheat-Sheets/NumPy.ipynb
- Pandas: Cheat-Sheets/Pandas.md
- PySpark: Cheat-Sheets/PySpark.md
- PyTorch: Cheat-Sheets/PyTorch.md
- Python: Cheat-Sheets/Python.md
- Regular Expressions (RegEx): Cheat-Sheets/RegEx.md
- Scikit Learn: Cheat-Sheets/Sk-learn.md
- SQL: Cheat-Sheets/SQL.md
- TensorFlow: Cheat-Sheets/tensorflow.md
- 🎓 ML Topics:
- ARIMA: Machine-Learning\ARIMA.md
- Activation functions: Machine-Learning\Activation functions.md
- Collaborative Filtering: Machine-Learning\Collaborative Filtering.md
- Confusion Matrix: Machine-Learning\Confusion Matrix.md
- DBSCAN: Machine-Learning\DBSCAN.md
- Decision Trees: Machine-Learning\Decision Trees.md
- Gradient Boosting: Machine-Learning\Gradient Boosting.md
- K-means clustering: Machine-Learning\K-means clustering.md
- Linear Regression: Machine-Learning\Linear Regression.md
- Logistic Regression: Machine-Learning\Logistic Regression.md
- Loss Function MAE, RMSE: Machine-Learning\Loss Function MAE, RMSE.md
- Neural Networks: Machine-Learning\Neural Networks.md
- Normal Distribution: Machine-Learning\Normal Distribution.md
- Normalization Regularisation: Machine-Learning\Normalization Regularisation.md
- Overfitting, Underfitting: Machine-Learning\Overfitting, Underfitting.md
- PCA: Machine-Learning\PCA.md
- Random Forest: Machine-Learning\Random Forest.md
- Support Vector Machines: Machine-Learning\Support Vector Machines.md
- Unbalanced, Skewed data: Machine-Learning\Unbalanced, Skewed data.md
- kNN: Machine-Learning\kNN.md
- 👨🏾💻 Online Resources:
- Online Study Material: Online-Material/Online-Material-for-Learning.md
- Popular Blogs: Online-Material/popular-resources.md
# - 🚴🏽♀ As fast as possible:
# - Introduction: as-fast-as-possible/index.md
# - Neural Networks: as-fast-as-possible/Neural-Networks.md
# - Deep Natural Language Processing: as-fast-as-possible/Deep-NLP.md
# - Deep Computer Vision: as-fast-as-possible/Deep-CV.md
# - Tensorflow 2 with Keras: as-fast-as-possible/TF2-Keras.md
# - 🎌 Deploying ML Models:
# - Production Deployment: Deploying-ML-models/deploying-ml-models.md
- 📳 Projects: projects.md
- 🤝 Contribute: Contribute.md
- <small>Privacy Policy</small>: privacy.md
- <small>Contact</small>: contact.md
# Copyright
copyright: >-
Copyright © 2020 -
<script>document.write(/\d{4}/.exec(Date())[0])</script>
• <strong>Kuldeep Singh Sidhu</strong>
• <u><a href="https://choosealicense.com/licenses/agpl-3.0/" target=”_blank”>License</a></u>
• <u><a href="/privacy">Privacy Policy</a></u> • <u><a href="/contact">Contact</a></u>
•