ValueError: For 'context.set_context', package type mindspore support 'device_target' type cpu, but got Ascend.
时间: 2024-01-22 19:19:14 浏览: 134
python学习笔记-面向对象高级编程-20200324
这个错误通常发生在使用MindSpore框架时,你可能在使用 Ascend 设备时错误地将 `device_target` 参数设置为了 "Ascend",而 MindSpore 只支持 "cpu" 作为 `device_target` 参数的值。
解决这个问题的方法是将 `device_target` 参数设置为 "CPU",而不是 "Ascend"。你可以在代码中使用以下语句来设置 `device_target` 参数:
```python
from mindspore import context
context.set_context(device_target="CPU")
```
这将把 `device_target` 参数设置为 "CPU",并应该解决你遇到的问题。
阅读全文