我正在尝试使用自定义数据集运行layout-xlm,遇到了这个问题。
LayoutLMv2的后端问题。我尝试了以下方法,但没有解决问题。
1)我尝试通过修改data_collactor来解决这个问题。
batch['image'] = ImageList.from_tensors([feature['image'] for feature in features], 32)
2)在modelling_layoutlmv2中:
def forward(self, images):
images_input = (
(images if torch.is_tensor(images) else images.tensor) - self.pixel_mean
) / self.pixel_std
3条答案
按热度按时间5f0d552i1#
你能分享一个代码片段来重现这个错误吗?谢谢。
jobtbby32#
移除 .tensor 应该可以正常工作,因为图像本身就是一个Tensor,再次显式地将其转换为Tensor会引发错误。
在进行此更改后,您能分享一下您遇到的错误吗?
oknwwptz3#
我遇到了同样的问题,有人知道解决方案吗?