Skip to content

Commit

Permalink
Merge pull request #1 from dimx9173/dev/philipperemy#256
Browse files Browse the repository at this point in the history
Fix issue#256
  • Loading branch information
dimx9173 authored Aug 5, 2024
2 parents fc6ffd3 + 0b8928d commit 042b9df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcn/tcn.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def build(self, input_shape):
else:
self.output_slice_index = -1 # causal case.
self.slicer_layer = Lambda(lambda tt: tt[:, self.output_slice_index, :], name='Slice_Output')
self.slicer_layer.build(self.build_output_shape.as_list())
self.slicer_layer.build(list(self.build_output_shape))

def compute_output_shape(self, input_shape):
"""
Expand Down

0 comments on commit 042b9df

Please sign in to comment.