diff options
Diffstat (limited to 'feature_dict')
-rwxr-xr-x | feature_dict | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/feature_dict b/feature_dict new file mode 100755 index 0000000..d0ebb7a --- /dev/null +++ b/feature_dict @@ -0,0 +1,23 @@ +#!/usr/bin/env ruby + +n = 0 +feature_dict = {} +l_i = 1 +while line = STDIN.gets + STDERR.write "#{l_i}\n" + line.split.each { |i| + f, v = i.split('=', 2) + if !feature_dict.has_key? f + feature_dict[f] = n + n += 1 + end + } + l_i += 1 +end + +f = File.new "fd.dump", 'w' +f.write Marshal.dump feature_dict +f.close + +STDERR.write "size = #{feature_dict.size}\n" + |