From 2b1d7f881c19c4d4b5afae194e02d3300c7675d0 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Tue, 5 Jul 2016 11:01:46 +0200 Subject: mv --- convert_to_svmlight_format | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 convert_to_svmlight_format (limited to 'convert_to_svmlight_format') diff --git a/convert_to_svmlight_format b/convert_to_svmlight_format deleted file mode 100755 index a9ce98f..0000000 --- a/convert_to_svmlight_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&¬_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 - -- cgit v1.2.3