summaryrefslogtreecommitdiff
path: root/svm-light-fmt-conv
blob: a9ce98f253e201de7a4307fe784fb8b47c9b0e50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env ruby

require 'zipf'

fd = Marshal.load ReadFile.read ARGV[0]
d = fd.size

not_quiet = ARGV[1]
train = []
l_i = 1
while line = STDIN.gets
  STDERR.write "#{l_i}\n" if l_i%1000==0&&not_quiet
  s = []
  line.split.each { |i|
    k,w = i.split '=', 2
    s << [fd[k]+1, w.to_f]
  }
  s.sort_by! { |i| i.first }
  puts "+1 #{s.map{|i| "#{i.first}:#{i[1]}" }.join(' ')}"
  l_i+= 1
end