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

Commit 761d0b3

Browse files
Update to v0.0.8
1 parent 964d838 commit 761d0b3

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
**.pyc
1+
*.pyc
22
dist
33
.eggs
44
.cache
@@ -8,3 +8,4 @@ dist
88
notebooks/.ipynb_checkpoints
99
coverage.txt
1010
.coverage
11+
lucidenv

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from setuptools import setup, find_packages
2020

21-
version = '0.0.7'
21+
version = '0.0.8'
2222

2323
test_deps = [
2424
'future',

tests/modelzoo/test_vision_models.py

+5
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,8 @@ def test_InceptionV1_graph_import():
2323
node_names = set(node.name for node in nodes)
2424
for layer_name in important_layer_names:
2525
assert "import/"+layer_name+"_pre_relu" in node_names
26+
27+
def test_InceptionV1_labels():
28+
model = InceptionV1()
29+
assert model.labels is not None
30+
assert model.labels[0] == "dummy"

0 commit comments

Comments
 (0)