Skip to content

Commit

Permalink
Release/0.1.0 (#92)
Browse files Browse the repository at this point in the history
0.0.2-alpha => 0.1.0
  • Loading branch information
Raphael Meudec committed Oct 2, 2019
1 parent bf14703 commit 6552477
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[bumpversion]
current_version = 0.1.0
commit = True
tag = False

[bumpversion:file:setup.py]

[bumpversion:file:tf_explain/__init__.py]

2 changes: 1 addition & 1 deletion examples/core/activations_visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from tf_explain.core.activations import ExtractActivations

target_layers = ['activation_6'] # Could be either the output of a Conv2D, or an activation
target_layers = ['conv1_relu'] # Could be either the output of a Conv2D, or an activation
IMAGE_PATH = './cat.jpg'

if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


setup(name='tf-explain',
version='0.0.2-alpha',
version='0.1.0',
description='Interpretability Callbacks for Tensorflow 2.0',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion tf_explain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
callbacks to ease neural network's understanding.
"""

__version__ = "0.0.2-alpha"
__version__ = "0.1.0"

from . import core
from . import callbacks
Expand Down

0 comments on commit 6552477

Please sign in to comment.