Closed bazingasherlock closed 7 years ago
Sorry, currently I cannot answer this question now because I am under military training. I promise to answer it 3 weeks later. Please wait until then
I couldn't find any requires_grad parameters set to be true or false. As far as I know, setting required_grad to be false is only required when you want to fix certain layer. RN is end-to-end learning system, so I suspect I didn't need to set any reuiqres_grad to be false. If I am wrong, please tell me.
Why all of your variables here and here's
requires_grad
argumand set toFalse
? You setrequires_grad
parameter ofcoord_tensor
variable tofalse
and then you concatenate it with the output of cnn (defined asx
),whoserequires_grad
arguman istrue
by default I guess, at line 78. In this case what is therequires_grad
parameter of concatenated variable (output of line 78 which is alsox_flat
)?