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

Commit d1144d0

Browse files
Add additional URLs to 'Going Deeper With Convolutions'
1 parent a1b0883 commit d1144d0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

lucid/modelzoo/other_models/InceptionV1.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,20 @@ def _populate_inception_bottlenecks(scope):
3737
class InceptionV1(Model):
3838
"""InceptionV1 (or 'GoogLeNet')
3939
40-
This is a (re?)implementation of InceptionV1
41-
https://www.cs.unc.edu/~wliu/papers/GoogLeNet.pdf
40+
This is a (re?)implementation of InceptionV1 from the "Going deeper
41+
with convolutions" paper. Links:
42+
* Official CVPR paper, requires subscription: https://ieeexplore.ieee.org/document/7298594
43+
* Author preprint: https://www.cs.unc.edu/~wliu/papers/GoogLeNet.pdf
44+
* arXiv: https://arxiv.org/abs/1409.4842
45+
4246
The weights were trained at Google and released in an early TensorFlow
4347
tutorial. It is possible the parameters are the original weights
4448
(trained in TensorFlow's predecessor), but we haven't been able to
4549
confirm this.
4650
4751
As far as we can tell, it is exactly the same as the model described in
4852
the original paper, where as the slim and caffe implementations have
49-
minor implementation differences (such as eliding the heads).
53+
minor implementation differences (such as eliding extra classification heads).
5054
"""
5155
model_path = 'gs://modelzoo/vision/other_models/InceptionV1.pb'
5256
labels_path = 'gs://modelzoo/labels/ImageNet_alternate.txt'

0 commit comments

Comments
 (0)