summaryrefslogtreecommitdiff
path: root/fake_svm_light
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-07-05 11:01:46 +0200
committerPatrick Simianer <p@simianer.de>2016-07-05 11:01:46 +0200
commit2b1d7f881c19c4d4b5afae194e02d3300c7675d0 (patch)
tree5a06ee7de98640a39244b57bb369697176b44ebf /fake_svm_light
parent69949dda35c3ea21d8e926e5f0a596a0a0f61c6a (diff)
mv
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
-