No module named 'dataset.dataset'
时间: 2023-09-10 13:14:19 浏览: 191
关于json_to_dataset时出现 module ‘labelme.utils’ has no attribute ‘draw_label’的解决
It seems that the module 'dataset.dataset' is not installed in your Python environment. You can install it using pip, which is a package manager for Python. Open your terminal or command prompt and run the following command:
```
pip install dataset
```
This should install the 'dataset' module and you should no longer see the error message.
阅读全文