forked from mrdbourke/zero-to-mastery-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake_docs.sh
More file actions
executable file
·18 lines (15 loc) · 771 Bytes
/
Copy pathmake_docs.sh
File metadata and controls
executable file
·18 lines (15 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
# Copy documents
cp section-2-data-science-and-ml-tools/introduction-to-numpy.ipynb docs/
cp section-2-data-science-and-ml-tools/introduction-to-pandas.ipynb docs/
cp section-2-data-science-and-ml-tools/introduction-to-matplotlib.ipynb docs/
cp section-2-data-science-and-ml-tools/introduction-to-scikit-learn.ipynb docs/
cp section-4-unstructured-data-projects/end-to-end-dog-vision-v2.ipynb docs/
cp section-3-structured-data-projects/end-to-end-heart-disease-classification.ipynb docs/
cp section-3-structured-data-projects/end-to-end-bluebook-bulldozer-price-regression-v2.ipynb docs/
cp communicating-your-work.md docs/
cp images/* docs/images/
# Remove .ipynb_checkpoints from docs/
rm -rf docs/.ipynb_checkpoints
# Launch mkdocs server
mkdocs serve