LibSVM automatic labeller script

Is there a script that converts tab delimited data file to libSVM data format? For example, my unlabeled data:

-1 9.45 1.44 8.90 
-1 8.12 7.11 8.90
-1 8.11 6.12 8.78

and I would like to add each value with a label:

-1 1: 9.45 2: 1.44 3: 8.90 
-1 1: 8.12 2: 7.11 3: 8.90
-1 1: 8.11 2: 6.12 3: 8.78

I believe this can be done with sed or awk, but I just don't know how to do it.

Thank!

+3
source share
3 answers

Try:

awk '{out=$1; for (i=2; i<=NF; i++) {out=out"\t"i-1":"$i} {print out}}' inputfile
+3
source
$ awk -F'\t' '{for(i=2;i<=NF;i++){$i=i-1":"$i;} }1' OFS='\t' file
-1 1:9.45 2:1.44 3:8.90
-1 1:8.12 2:7.11 3:8.90
-1 1:8.11 2:6.12 3:8.78
+2
source

You can use Ruby:

labels = File.open('labels.txt','r').map{|line| line.split}.flatten
data = File.open('data.txt','r').map{|line| line.split}.flatten.drop(1)
puts labels.zip(data).map{|pair| pair.join(':')}.join(' ')
+1
source

Source: https://habr.com/ru/post/1727009/


All Articles