Closed titipata closed 5 years ago
In model.py, there is a case that padding can be (0, 0) which gives a problem when we want to convert to use in Tensorflow JS:
model.py
(0, 0)
out = ZeroPadding1D(padding=(0, window-1))(out)
We probably have to modify the following:
if window != 1: out = ZeroPadding1D(padding=(0, window-1))(out)
I'll mark this as wontfix. If we come across this issue, we can reopen it.
wontfix
In
model.py
, there is a case that padding can be(0, 0)
which gives a problem when we want to convert to use in Tensorflow JS:We probably have to modify the following: