powered by
Temporarily modify gradient recording.
with_no_grad(code)
code to be executed with no gradient recording.
if (torch_is_installed()) { x <- torch_tensor(runif(5), requires_grad = TRUE) with_no_grad({ x$sub_(torch_tensor(as.numeric(1:5))) }) x x$grad }
Run the code above in your browser using DataLab