diff options
author | Patrick Simianer <p@simianer.de> | 2015-01-31 16:27:03 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2015-01-31 16:27:03 +0100 |
commit | 9071a7f2c15c2eddd925edcb62db2794ccad6c50 (patch) | |
tree | fded8e709a059b6c3832189bb7332d425f47dc76 /convert_to_svmlight_format | |
parent | 382da51dbb316b073da1ea48193139ee1a9f71fd (diff) |
tools
Diffstat (limited to 'convert_to_svmlight_format')
-rwxr-xr-x | convert_to_svmlight_format | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/convert_to_svmlight_format b/convert_to_svmlight_format new file mode 100755 index 0000000..7e5c538 --- /dev/null +++ b/convert_to_svmlight_format @@ -0,0 +1,21 @@ +#!/usr/bin/env ruby + +require 'zipf' + +fd = Marshal.load ReadFile.read ARGV[0] +d = fd.size + +train = [] +l_i = 1 +while line = STDIN.gets + puts l_i if l_i%1000==0 + 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 + |