AttributeError: module 'torch.nn' has no attribute 'Model'
时间: 2023-06-12 16:03:00 浏览: 146
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为你想使用PyTorch的预训练模型,但是使用了错误的类名。PyTorch中没有名为`Model`的类。如果你想使用PyTorch的预训练模型,应该使用相应的模型类名,例如`BertModel`、`GPT2Model`、`RobertaModel`等等,这些类名都在`torch.nn`模块中。
如果你仍然有问题,请检查PyTorch的版本是否正确,并确保导入的模块是正确的。
阅读全文