AI / ML Path

Deep Learning Frameworks

10 questions

Question 1 of 10Score: 0 / 0

What does the following print? import torch x = torch.tensor(4.0, requires_grad=True) y = x ** 3 y.backward() print(x.grad.item())