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
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
Python 2.7, mxnet v '0.11.0'
Very simply, if sym.UpSampling is not called with the appropriate parameters, MxNet crashes without meaningful error messages.
This will crash:
mx.sym.UpSampling(data=body, scale=4, sample_type='bilinear', workspace=workspace)
But this is fine:
mx.sym.UpSampling(data=body, scale=4, num_filter=3, sample_type='bilinear', workspace=workspace)
Difference being that I added the num_filter argument
A full network example
The text was updated successfully, but these errors were encountered: