ModuleNotFoundError: No module named 'torch_mimicry'
时间: 2023-11-12 14:59:45 浏览: 66
torch_ecg_models:受过训练的torch_ecg模型
这个错误提示表明你的环境中没有安装名为 `torch_mimicry` 的 Python 模块。`torch_mimicry` 是一个基于 PyTorch 的生成对抗网络(GAN)库,提供了许多预训练的 GAN 模型和训练 GAN 模型所需的工具函数。如果你想使用 `torch_mimicry`,可以通过以下命令安装:
```
pip install torch_mimicry
```
请注意,安装 `torch_mimicry` 之前需要先安装 PyTorch。
阅读全文