summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconvert_to_svmlight_format3
-rwxr-xr-xfeature_dict5
2 files changed, 5 insertions, 3 deletions
diff --git a/convert_to_svmlight_format b/convert_to_svmlight_format
index 7e5c538..a9ce98f 100755
--- a/convert_to_svmlight_format
+++ b/convert_to_svmlight_format
@@ -5,10 +5,11 @@ require 'zipf'
fd = Marshal.load ReadFile.read ARGV[0]
d = fd.size
+not_quiet = ARGV[1]
train = []
l_i = 1
while line = STDIN.gets
- puts l_i if l_i%1000==0
+ STDERR.write "#{l_i}\n" if l_i%1000==0&&not_quiet
s = []
line.split.each { |i|
k,w = i.split '=', 2
diff --git a/feature_dict b/feature_dict
index d0ebb7a..6849769 100755
--- a/feature_dict
+++ b/feature_dict
@@ -1,10 +1,11 @@
#!/usr/bin/env ruby
+not_quiet = ARGV[1]
n = 0
feature_dict = {}
l_i = 1
while line = STDIN.gets
- STDERR.write "#{l_i}\n"
+ STDERR.write "#{l_i}\n" if l_i%1000==0&&not_quiet
line.split.each { |i|
f, v = i.split('=', 2)
if !feature_dict.has_key? f
@@ -15,7 +16,7 @@ while line = STDIN.gets
l_i += 1
end
-f = File.new "fd.dump", 'w'
+f = File.new ARGV[0], 'w'
f.write Marshal.dump feature_dict
f.close