diff options
Diffstat (limited to 'fake-svm-light')
-rwxr-xr-x | fake-svm-light | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/fake-svm-light b/fake-svm-light deleted file mode 100755 index eb074c1..0000000 --- a/fake-svm-light +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env ruby - -while line = STDIN.gets - a = line.split - label = a.shift.to_f - label *= -1 - a.map! { |i| - k,v = i.split ":" - v = v.to_f*-1 - "#{k}:#{v}" - } - puts "#{label} #{a.join ' '}" -end - |