You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, I got a lot of indexing errors in the unpool function in enet.py. I fixed them by changing (lines 108/109):
y = (mask // output_shape[2]) % output_shape[1]
x = mask % (output_shape[2])
I'm pretty sure this is correct if the mask is made by the standard 3d --> 1d flattening formula...but can you explain why the error exists in the code? I just downloaded and attempted to run it.
The text was updated successfully, but these errors were encountered:
Hey, I got a lot of indexing errors in the unpool function in enet.py. I fixed them by changing (lines 108/109):
y = (mask // output_shape[2]) % output_shape[1]
x = mask % (output_shape[2])
I'm pretty sure this is correct if the mask is made by the standard 3d --> 1d flattening formula...but can you explain why the error exists in the code? I just downloaded and attempted to run it.
The text was updated successfully, but these errors were encountered: