Skip to content

Commit 1b224f6

Browse files
author
Raphael Meudec
committed
black check
1 parent 405a469 commit 1b224f6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -288,3 +288,7 @@ model.fit(x_train, y_train, batch_size=2, epochs=2, callbacks=callbacks)
288288
## Contributing
289289

290290
To contribute to the project, please read the [dedicated section](./CONTRIBUTING.md).
291+
292+
## Citation
293+
294+
A [citation file](./CITATION.cff) is available for citing this work.

tf_explain/callbacks/activations_visualization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class ActivationsVisualizationCallback(Callback):
1515

16-
""" Draw activations of a specific layer for a given input """
16+
"""Draw activations of a specific layer for a given input"""
1717

1818
def __init__(
1919
self,

tf_explain/core/activations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class ExtractActivations:
1212

13-
""" Draw activations of a specific layer for a given input """
13+
"""Draw activations of a specific layer for a given input"""
1414

1515
def __init__(self, batch_size=None):
1616
self.batch_size = batch_size

0 commit comments

Comments
 (0)