diff options
author | Patrick Simianer <p@simianer.de> | 2017-11-11 12:04:23 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2017-11-11 12:04:23 +0100 |
commit | c9c9f14ee768be723013ad850473541fabfdbe13 (patch) | |
tree | cb269833c496f9671788ef5e06b6b5af837fad3a | |
parent | 544bee6a45fab6f3d1d46da6fe9bce3a04d83658 (diff) |
cleanup
-rwxr-xr-x | svm-light-fmt-conv | 22 | ||||
-rwxr-xr-x | svm-light-fmt-fake | 14 |
2 files changed, 0 insertions, 36 deletions
diff --git a/svm-light-fmt-conv b/svm-light-fmt-conv deleted file mode 100755 index a9ce98f..0000000 --- a/svm-light-fmt-conv +++ /dev/null @@ -1,22 +0,0 @@ -#!/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&¬_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 - diff --git a/svm-light-fmt-fake b/svm-light-fmt-fake deleted file mode 100755 index eb074c1..0000000 --- a/svm-light-fmt-fake +++ /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 - |