Which of the following are subfields of AI?
The global gradient descent, stochastic gradient descent, and batch gradient descent algorithms are gradient descent algorithms. Which of the following is true about these algorithms?
The concept of "artificial intelligence" was first proposed in the year of:
As the cornerstone of Huawei's full-stack, all-scenario AI solution, it provides modules, boards, and servers powered by the Ascend AI processor to meet customer demand for computing power in all scenarios.
Which of the following statements are false about softmax and logistic?
Which of the following are common gradient descent methods?
Huawei's full-stack AI solution includes Ascend, MindSpore, and ModelArts. (Enter an acronym.)
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 you use MindSpore to execute the following code, which of the following is the output?
python
Copy code
x = Tensor(np.array([[1, 2], [3, 4]]), dtype.int32)
x.dtype
Which of the following are feedforward neural networks?