Skip to content

Commit 6552477

Browse files
author
Raphael Meudec
authored
Release/0.1.0 (#92)
0.0.2-alpha => 0.1.0
1 parent bf14703 commit 6552477

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.bumpversion.cfg

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[bumpversion]
2+
current_version = 0.1.0
3+
commit = True
4+
tag = False
5+
6+
[bumpversion:file:setup.py]
7+
8+
[bumpversion:file:tf_explain/__init__.py]
9+

examples/core/activations_visualization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from tf_explain.core.activations import ExtractActivations
55

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

99
if __name__ == '__main__':

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
setup(name='tf-explain',
9-
version='0.0.2-alpha',
9+
version='0.1.0',
1010
description='Interpretability Callbacks for Tensorflow 2.0',
1111
long_description=long_description,
1212
long_description_content_type="text/markdown",

tf_explain/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
callbacks to ease neural network's understanding.
66
"""
77

8-
__version__ = "0.0.2-alpha"
8+
__version__ = "0.1.0"
99

1010
from . import core
1111
from . import callbacks

0 commit comments

Comments
 (0)