微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在 autogluon 中使用我自己的图像数据集?

如何解决如何在 autogluon 中使用我自己的图像数据集?

我正在 Google autoglon 上使用 colab,并尝试从 kaggle 训练图像数据集。我使用在 autogluon 站点中找到的说明下载了数据集。我有这样的my dataset is in "train"

然后我像教程中一样使用了代码并像这样粘贴了 training_set 的路径:

import autogluon as ag

from autogluon import ImageClassification as task

dataset = task.Dataset('/content/train/training_set/training_set')

print(dataset)

time_limits = 10 * 60 # 10mins

classifier = task.fit(dataset,time_limits=time_limits,ngpus_per_trial=1)

但它不起作用。我收到此错误

RecursionError: 调用 Python 对象时超出了最大递归深度

我尝试打印您在代码中看到的数据集,但它只打印了“AutogluonObject”。

Here is the link to autogluon tutorial,which I used to do this

感谢您的帮助。谢谢!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。