summaryrefslogtreecommitdiff
path: root/convert-to-svm-light-format
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 /convert-to-svm-light-format
parentf0f25e71f85035cbeddbb7342844f2e4cf024446 (diff)
rename, remove non nlp stuff
Diffstat (limited to 'convert-to-svm-light-format')
-rwxr-xr-xconvert-to-svm-light-format22
1 files changed, 0 insertions, 22 deletions
diff --git a/convert-to-svm-light-format b/convert-to-svm-light-format
deleted file mode 100755
index a9ce98f..0000000
--- a/convert-to-svm-light-format
+++ /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&&not_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
-