Correct Answer : PyTorch
Explanation : PyTorch is an open source machine learning library for Python and is completely based on Torch.
Correct Answer : Facebook's AI Research lab (FAIR)
Explanation : PyTorch is an open source machine learning library based on the Torch library, used for applications such as computer vision and natural language processing, primarily developed by Facebook's AI Research lab. It is free and open-source software released under the Modified BSD license.
Correct Answer : September 2016
Correct Answer : All of the above
Correct Answer : TRUE
Explanation : True, The torch.cuda is a package which adds support for CUDA tensor type.
Correct Answer : 3
Explanation :
Correct Answer : Tensor
Correct Answer : 2
Explanation : The activation functions are basically divided into two types: Linear Activation Function and Non-linear Activation Function
Correct Answer : variable
Explanation : Variable is a package which is used to wrap a tensor. The autograd.variable is the central class for the package.
Correct Answer : Linear Regression
Explanation : Linear Regression is a technique or way to find the linear relation between the dependent variable and the independent variable by minimizing the distance.
Correct Answer : Mean Squared Error
Explanation : MSE stands for Mean Squared Error, which is used to create a criterion the measures the mean squared error between each element in an input x and target y.
Explanation : * MSELoss stands for Mean Squared Error, which is used to create a criterion the measures the mean squared error between each element in an input x and target y. * CTCLoss stands for Connectionist Temporal Classification Loss, which is used to calculate the loss between continuous time series and target sequence. * BCELoss stands for Binary Cross Entropy is used to create a criterion to measures the Binary Cross Entropy between the target and the output.
Correct Answer : Two
Explanation : Pooling layers provide an approach to down sampling feature maps by summarizing the presence of features in patches of the feature map. Two common pooling methods are average pooling and max pooling that summarize the average presence of a feature and the most activated presence of a feature respectively.