CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
amanchadha

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: amanchadha/coursera-deep-learning-specialization
Path: blob/master/setup.sh
Views: 4799
1
# Aman Chadha / [email protected]
2
# www.amanchadha.com / www.aman.ai
3
4
# extract all the zip'd pre-trained models and datasets
5
find . -name "*.zip" | while read filename; do unzip -o -d "`dirname "$filename"`" "$filename"; done;
6
7
# get imagenet-vgg-verydeep-19.mat for Course 4 "Convolutional Neural Networks" Week 4 assignment: "Neural Style Transfer"
8
curl https://www.vlfeat.org/matconvnet/models/beta16/imagenet-vgg-verydeep-19.mat > "./C4 - Convolutional Neural Networks/Week 4/Neural Style Transfer/pretrained-model/imagenet-vgg-verydeep-19.mat"
9
10