Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mrdbourke
GitHub Repository: mrdbourke/zero-to-mastery-ml
Path: blob/master/make_docs.sh
874 views
1
#!/bin/bash
2
3
# Copy documents
4
cp section-2-data-science-and-ml-tools/introduction-to-numpy.ipynb docs/
5
cp section-2-data-science-and-ml-tools/introduction-to-pandas.ipynb docs/
6
cp section-2-data-science-and-ml-tools/introduction-to-matplotlib.ipynb docs/
7
cp section-2-data-science-and-ml-tools/introduction-to-scikit-learn.ipynb docs/
8
cp section-4-unstructured-data-projects/end-to-end-dog-vision-v2.ipynb docs/
9
cp section-3-structured-data-projects/end-to-end-heart-disease-classification.ipynb docs/
10
cp section-3-structured-data-projects/end-to-end-bluebook-bulldozer-price-regression-v2.ipynb docs/
11
cp communicating-your-work.md docs/
12
cp images/* docs/images/
13
14
# Remove .ipynb_checkpoints from docs/
15
rm -rf docs/.ipynb_checkpoints
16
17
# Launch mkdocs server
18
mkdocs serve
19