In MindSpore, mindspore.nn.Conv2d() is used to create a convolutional layer. Which of the following values can be passed to this API's "pad_mode" parameter?
All kernels of the same convolutional layer in a convolutional neural network share a weight.
Which of the following is NOT a key feature that enables all-scenario deployment and collaboration for MindSpore?
In a hyperparameter-based search, the hyperparameters of a model are searched based on the data on and the model's performance metrics.
When you use MindSpore to execute the following code, which of the following is the output?
from mindspore import ops
import mindspore
shape = (2, 2)
ones = ops.Ones()
output = ones(shape, dtype=mindspore.float32)
print(output)
When using the following code to construct a neural network, MindSpore can inherit the Cell class and rewrite the __init__ and construct methods.