Google News
logo
Pytorch - Quiz(MCQ)
PyTorch is known for having _____ levels of abstraction.
A)
6
B)
5
C)
3
D)
2

Correct Answer : Option (C) :   3


Explanation :

Tensor : Tensor is an imperative n-dimensional array which runs on GPU.
Variable : It is a node in the computational graph. This stores data and gradient.
Module : Neural network layer will store state the otherwise learnable weight.

Advertisement