[Mulan-list] TMC2007 data Format
Brought to you by:
stevelaskaridis,
tsoumakas
|
From: <gzg...@si...> - 2016-10-23 09:43:53
|
Hi all,I have downloaded the tmc2007 dataset from mulan. But it's format is as follows:@relation MultiLabelExample
@attribute 8867 {0,1}
@attribute 8861 {0,1}
@attribute 8862 {0,1}
@attribute label1 {0, 1}
@attribute label2 {0, 1}
@attribute label3 {0, 1}
@attribute label4 {0, 1}
@attribute label5 {0, 1}
@data
{8861 1,8862 1}
how can i transform tmc2007 to the standard format like:
@relation MultiLabelExample
@attribute feature1 numeric
@attribute feature2 numeric
@attribute feature3 numeric
@attribute label1 {0, 1}
@attribute label2 {0, 1}
@attribute label3 {0, 1}
@attribute label4 {0, 1}
@attribute label5 {0, 1}
@data
2.3,5.6,1.4,0,1,1,0,0
Thanks |