gpt4 book ai didi

python - Pytorch ImageNet 数据集

转载 作者:行者123 更新时间:2023-12-04 12:19:41 27 4
gpt4 key购买 nike

我无法从他们的官方网站下载原始 ImageNet 数据集。但是,我发现 pytorch 将 ImageNet 作为其 Torch 视觉数据集之一。

一季度。那是原始的 ImageNet 数据集吗?

Q2。我如何像在 Cifar-10 中那样获取数据集的类

classes = [‘airplane’, ‘automobile’, ‘bird’, ‘cat’, ‘deer’, ‘dog’, ‘frog’, ‘horse’, ‘ship’, ‘truck’]

最佳答案

torchvision.datasets.ImageNet只是一个允许您使用 ImageNet 数据集的类。您必须自己下载数据集(例如从 http://image-net.org/download-images )并将路径传递给它作为 root ImageNet 类对象的参数。
请注意,通过传递标志 download=True 直接下载它的选项不再可能:

if download is True:
msg = ("The dataset is no longer publicly accessible. You need to "
"download the archives externally and place them in the root "
"directory.")
raise RuntimeError(msg)
elif download is False:
msg = ("The use of the download flag is deprecated, since the dataset "
"is no longer publicly accessible.")
warnings.warn(msg, RuntimeWarning)
( source )
如果您只需要获取类名和相应的索引而不下载整个数据集(例如,如果您使用的是预训练模型并希望将预测映射到标签),那么您可以下载它们,例如来自 here或来自 this github 要点。

关于python - Pytorch ImageNet 数据集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60607824/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com