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 38e1ef8 commit 1ff9775Copy full SHA for 1ff9775
tcn/tcn.py
@@ -84,7 +84,7 @@ def __init__(self,
84
padding='causal',
85
use_skip_connections=True,
86
dropout_rate=0.0,
87
- return_sequences=True,
+ return_sequences=False,
88
name='tcn'):
89
self.name = name
90
self.return_sequences = return_sequences
@@ -136,7 +136,7 @@ def compiled_tcn(num_feat, # type: int
136
max_len, # type: int
137
padding='causal', # type: str
138
use_skip_connections=True, # type: bool
139
- return_sequences=False,
+ return_sequences=True,
140
regression=False, # type: bool
141
dropout_rate=0.05, # type: float
142
name='tcn' # type: str
0 commit comments