When using the following code to construct a neural network, MindSpore can inherit the Cell class and rewrite the __init__ and construct methods.
Which of the following is NOT a key feature that enables all-scenario deployment and collaboration for MindSpore?
An algorithm of unsupervised learning classifies samples in a dataset into several categories. Samples belonging to the same category have high similarity.
"AI application fields include only computer vision and speech processing." Which of the following is true about this statement?
Which of the following statements is false about feedforward neural networks?
The core of the MindSpore training data processing engine is to efficiently and flexibly convert training samples (datasets) to MindRecord and provide them to the training network for training.
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)
Google proposed the concept of knowledge graph and took the lead in applying knowledge graphs to search engines in 2012, successfully improving users' search quality and experience.
The concept of "artificial intelligence" was first proposed in the year of:
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?