summaryrefslogtreecommitdiff
path: root/svm-light-fmt-fake
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-11-04 17:04:12 +0100
committerPatrick Simianer <p@simianer.de>2016-11-04 17:04:12 +0100
commit5339c8fdb1df47a2dab688bf1469e02a28eb0c89 (patch)
tree80b99604096f43fee6573c0cc08ab6b1f56de827 /svm-light-fmt-fake
parentf0f25e71f85035cbeddbb7342844f2e4cf024446 (diff)
rename, remove non nlp stuff
Diffstat (limited to 'svm-light-fmt-fake')
-rwxr-xr-xsvm-light-fmt-fake14
1 files changed, 14 insertions, 0 deletions
diff --git a/svm-light-fmt-fake b/svm-light-fmt-fake
new file mode 100755
index 0000000..eb074c1
--- /dev/null
+++ b/svm-light-fmt-fake
@@ -0,0 +1,14 @@
+#!/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
+