Libsvm 数据集格式中样本的含义(特别是 Mnist)

发布于 2024-12-05 08:39:32 字数 369 浏览 0 评论 0原文

我从 Libsvm 的数据集页面下载了 Mnist 数据集。 所有样本如下:

5 153:3 154:18 155:18 156:18 157:126 ...

有谁知道这意味着什么? 5 是类标签,但是 153:3 对是什么?我也无法从mnist自己的网页中找到含义。

I downloaded Mnist dataset from Libsvm's dataset page.
All samples are like the following:

5 153:3 154:18 155:18 156:18 157:126 ...

Does anyone knows what that means? 5 is the class label, but what is 153:3 pair for example? Also I couldn't find the meaning from mnist's own web page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

新人笑 2024-12-12 08:39:32

这是 libsvm 编码(稀疏)向量的方式。正如您所说的 5 是标签,下面的对 i:v 表示向量的第 i 条目是 v。因此,您可以将 3 维向量 (a,b,c) 编码为,

1:a 2:b 3:c

这对于密集向量来说效率较低,但对于稀疏数据来说是一种良好的既定格式。由于它是纯文本,因此存储空间不是最佳的,但对于大多数应用程序来说已经足够了。而这些文件很容易写入和读取。

This is the way libsvm encodes (sparse) vectors. As you said 5 is the label, and the following pairs i:v say that the i-th entry of the vector is v. So you would encode a 3-dim vector (a,b,c) as

1:a 2:b 3:c

Which is inefficient for dense vectors but a good and established format for sparse data. As it is plain text, the storage space is not optimal, but good enough for most applications. Whereas the files are easy to write and to read.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文