from mxnet import np
时间: 2023-08-18 07:07:22 浏览: 139
mxnet框架使用小结
Hello! It seems like you're trying to import the `np` module from the `mxnet` library. However, there is no `np` module in the `mxnet` library. If you want to import the `numpy` module, you can use the following code:
```python
import numpy as np
```
Is there anything else I can assist you with?
阅读全文