Skip to content
This repository was archived by the owner on Apr 5, 2023. It is now read-only.

Commit cd71bcd

Browse files
committed
Add lecture 6
1 parent 53cc570 commit cd71bcd

File tree

6 files changed

+952
-0
lines changed

6 files changed

+952
-0
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Notebook checkpoints
2+
.ipynb_checkpoints/
3+
4+
# IDEA related files
5+
*.iml
6+
.idea/
7+
8+
# Resnet checkpoint
9+
inception_resnet_v2_2016_08_30.*
10+
11+
# tensorflow/models
12+
models/

lecture-6/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
DEBUGGING CONVOLUTIONAL NEURAL NETWORKS
2+
=======================================
3+
4+
# Downloading requirements
5+
6+
In order to run the experiments in this folder you will need to clone the tensorflow models repository from `https://github.com/tensorflow/models`. For instance to download using ssh:
7+
8+
git clone [email protected]:tensorflow/models.git
9+
10+
You will also need to download a pre-trained checkpoint of inception resnet version2. You can do so from https://github.com/tensorflow/models/tree/master/research/slim#pre-trained-models For instance:
11+
12+
wget http://download.tensorflow.org/models/inception_resnet_v2_2016_08_30.tar.gz
13+
14+
After you download the archive, extract it:
15+
16+
tar -xzvf inception_resnet_v2_2016_08_30.tar.gz
17+
18+
# Configuring the notebooks
19+
20+
Each of the two notebooks has a cell with constants at the top where you can configure the paths to the location where you checked out tensorflow/models and where you extracted the inception resnet v2 checkpoint. By default those are assumed to be in the project root folder. If you decided to use a different location you need to update those locations.
21+

0 commit comments

Comments
 (0)