Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion egs/wsj/s5/steps/libs/nnet3/xconfig/convolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def set_derived_configs(self):
if input_dim % height_in != 0:
raise RuntimeError("Input dimension {0} is not a multiple of height-in={1}".format(
input_dim, height_in))
self.config['num-filters-in'] = input_dim / height_in
self.config['num-filters-in'] = input_dim // height_in


# Check whether 'str' is a sorted, unique, nonempty list of integers, like -1,0,1.,
Expand Down