Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mrdbourke
GitHub Repository: mrdbourke/zero-to-mastery-ml
Path: blob/master/mkdocs.yml
874 views
1
site_name: Zero to Mastery Data Science and Machine Learning Bootcamp
2
site_description: Learn the fundamentals of machine learning and data science with Python via hands-on coding tutorials.
3
4
repo_url: https://github.com/mrdbourke/zero-to-mastery-ml
5
repo_name: mrdbourke/zero-to-mastery-ml
6
7
nav:
8
- Home: "index.md"
9
- Getting Ready for ML Projects: "a-6-step-framework-for-approaching-machine-learning-projects.md"
10
- Introduction to NumPy: "introduction-to-numpy.ipynb"
11
- Introduction to pandas: "introduction-to-pandas.ipynb"
12
- Introduction to Matplotlib: "introduction-to-matplotlib.ipynb"
13
- Introduction to Scikit-Learn: "introduction-to-scikit-learn.ipynb"
14
- Milestone Projects:
15
- End-to-End Heart Disease Classification: "end-to-end-heart-disease-classification.ipynb"
16
- End-to-End Bulldozer Price Regression: "end-to-end-bluebook-bulldozer-price-regression-v2.ipynb"
17
- Introduction to TensorFlow, Deep Learning and Transfer Learning: "end-to-end-dog-vision-v2.ipynb"
18
- Communicating your work: "communicating-your-work.md"
19
20
plugins:
21
- mkdocs-jupyter:
22
ignore_h1_titles: True
23
# include_source: True
24
- search
25
# - social # this will break without cairosvg and pillow installed locally
26
27
theme:
28
name: material
29
# logo: assets/ztm-logo-and-pytorch-logo.png
30
# favicon: assets/ztm-logo-and-pytorch-logo.png
31
features:
32
- navigation.instant
33
- navigation.top
34
palette:
35
primary: black
36
37
markdown_extensions:
38
- meta
39
- pymdownx.highlight
40
- pymdownx.superfences
41
- pymdownx.tasklist:
42
custom_checkbox: true
43
44
extra:
45
social:
46
- icon: fontawesome/brands/twitter
47
link: https://twitter.com/mrdbourke
48
- icon: fontawesome/brands/github
49
link: https://github.com/mrdbourke/zero-to-mastery-ml
50
- icon: fontawesome/brands/youtube
51
link: https://www.youtube.com/channel/UCr8O8l5cCX85Oem1d18EezQ
52