MacOS 上 Pytorch 模型的默认下载路径是什么?

What is default download path for Pytorch models on MacOS?

MacOS 上 Pytorch 模型(来自 torchvision)的默认下载路径是什么?

我在主目录 ls -la ~/ | grep torch 中看不到任何内容。

当您第一次下载该模型的预训练权重时,您应该看到它显示的路径,如下所示:

您可以使用 model_dir 参数定义下载位置。 default behaviour 是:

The default value of `model_dir` is ``<hub_dir>/checkpoints`` where 
`hub_dir` is the directory returned by :func:`~torch.hub.get_dir`.