module 'torch.library' has no attribute 'register_fake'
时间: 2024-08-16 08:08:34 浏览: 1413
导入FashionMNIST数据集时报错module ‘torchvision.datasets’ has no attribute ‘FashionMNIS’
"module 'torch.library' has no attribute 'register_fake'" 这个错误提示通常表示在PyTorch库中不存在名为`register_fake`的属性。`torch.library`可能是指`torch.nn.Module`库的一部分,但这个特定功能似乎并不存在于官方文档所列的torch.nn的功能集里。
在PyTorch中,`nn.Module`是用来构建神经网络模块的标准方式,它提供了如`register_module()`、`forward()`等常见的注册和前向传播方法,而不是`register_fake`。如果你尝试使用这个名称,可能是遇到了误拼、未公开的API改变或者是出自某个非官方扩展库的行为。
阅读全文