summaryrefslogtreecommitdiff
path: root/fake-svm-light
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 /fake-svm-light
parentf0f25e71f85035cbeddbb7342844f2e4cf024446 (diff)
rename, remove non nlp stuff
Diffstat (limited to 'fake-svm-light')
-rwxr-xr-xfake-svm-light14
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
-