We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d5b199 commit dd8e778Copy full SHA for dd8e778
tensorlayer/_logging.py
@@ -5,3 +5,7 @@
5
6
def info(fmt, *args):
7
logging.info(fmt, *args)
8
+
9
10
+def warning(fmt, *args):
11
+ logging.warning(fmt, *args)
tensorlayer/layers/recurrent.py
@@ -148,7 +148,7 @@ def __init__(
148
try:
149
cell_init_args.pop('state_is_tuple')
150
except Exception:
151
- pass
+ logging.warning('pop state_is_tuple fails.')
152
153
self.inputs = layer.outputs
154
0 commit comments