Libsvm 数据集格式中样本的含义(特别是 Mnist)
我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 libsvm 编码(稀疏)向量的方式。正如您所说的
5
是标签,下面的对i:v
表示向量的第i
条目是v
。因此,您可以将 3 维向量 (a,b,c) 编码为,这对于密集向量来说效率较低,但对于稀疏数据来说是一种良好的既定格式。由于它是纯文本,因此存储空间不是最佳的,但对于大多数应用程序来说已经足够了。而这些文件很容易写入和读取。
This is the way
libsvm
encodes (sparse) vectors. As you said5
is the label, and the following pairsi:v
say that thei
-th entry of the vector isv
. So you would encode a 3-dim vector (a,b,c) asWhich 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.