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
Hi,
I'm not very familiar with mxnet and I have a problem with gender-age model from this repo. I noticed that it predicts different results depends on some third side code. I tried to make a minimal example. So, it loads model, takes first operation called ‘_minus_scalar0’, which should subtract 127.5 from the input matrix. But it is not! If you look at the screenshot, you can see that it subtracts 127.0 only.
Important. If I comment line 8, the code works correctly and predicts the correct age if I specify fc1 output. I don’t understand why. I reproduced this issue on 3 computers from 4.
What symbol operation corresponds to _minus_scalar? I checked broadcast_minus and broadcast_sub, these are not _minus_scalar operations.
How can I fix incorrect subtraction?
The text was updated successfully, but these errors were encountered:
@nttstar can you, please, specify what operation corresponds to _minus_scalar? I haven't found any code corresponding to gender-age model architecture.
I found out that this issue is not about gender-age model of this repo. I made a minimal example with only one operation - subtraction and it still works incorrect. So, I posted issue in mxnet repo, because it is primary.
Hi,
I'm not very familiar with mxnet and I have a problem with gender-age model from this repo. I noticed that it predicts different results depends on some third side code. I tried to make a minimal example. So, it loads model, takes first operation called ‘_minus_scalar0’, which should subtract 127.5 from the input matrix. But it is not! If you look at the screenshot, you can see that it subtracts 127.0 only.
Important. If I comment line 8, the code works correctly and predicts the correct age if I specify
fc1
output. I don’t understand why. I reproduced this issue on 3 computers from 4._minus_scalar
? I checkedbroadcast_minus
andbroadcast_sub
, these are not_minus_scalar
operations.The text was updated successfully, but these errors were encountered: