This repository was archived by the owner on Apr 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
lucid/modelzoo/other_models Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,20 @@ def _populate_inception_bottlenecks(scope):
3737class 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'
You can’t perform that action at this time.
0 commit comments