neural network - What is gradInput and gradOutput in Torch7's 'nn' package? -


hi starter of using torch's 'nn' package. in past 2 weeks, extremely confused meaning of gradinput , gradoutput in torch's 'nn' library. believe 'grad' here means gradient, 2 variables refers to?

thanks anyone's help!

gradoutput: gradient w.r.t. output of module. passed in either loss function, or module next current module. used compute gradient w.r.t. input (gradinput) , gradient w.r.t. parameters of module (gradweight / gradbias)


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -