UserWarning: Arguments other than a weight enum or `None` for 'weights' are deprecated since 0.13 and may be removed in the future. The current behavior is equivalent to passing `weights=ResNet18_Weights.IMAGENET1K_V1`. You can also use `weights=ResNet18_Weights.DEFAULT` to get the most up-to-date weights. warnings.warn(msg)
时间: 2024-04-06 14:29:20 浏览: 379
1238: UserWarning: findfont: Font family [‘sans-serif’] not found. Falling back to DejaVu Sans.
这个警告信息是关于使用 ResNet18 模型的权重参数的。在版本 0.13 及以后的版本中,使用权重参数时应该只传入一个 weight enum 或者 `None`。如果传入其它参数,则会出现这个警告信息。当前的行为等同于传入 `weights=ResNet18_Weights.IMAGENET1K_V1`。同时,你也可以使用 `weights=ResNet18_Weights.DEFAULT` 来获取最新的权重参数。这个警告信息告诉我们应该遵守最新的 API 使用方式。
阅读全文