Closed elfelround closed 4 years ago
hiya,
on chapter 15 part 1
page 526 on book function conv1d:
for i in range(0, int(len(x)/s),s)
this is a quick fix, only works with current example, if you augment padding by one it wont work,
id recommend this
for i in range(0, int((len(x_padded) - len(w_rot) / s)) + 1, s):
hiya,
on chapter 15 part 1
page 526 on book function conv1d:
this is a quick fix, only works with current example, if you augment padding by one it wont work,
id recommend this