summaryrefslogtreecommitdiff
path: root/dtrain/hstreaming/avgweights.rb
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2011-09-27 00:14:27 +0200
committerPatrick Simianer <p@simianer.de>2011-09-27 00:14:27 +0200
commitc9d20f422029ed61dec78ac0fd557aef61dbd973 (patch)
tree95e025e1d3d0aa28a408aba25e8e86bf6c986687 /dtrain/hstreaming/avgweights.rb
parentfb6bbeba17c56f5adf7ddcb16b445073883e1b83 (diff)
parent40c7d43f8cd5ccaef22f098937b985d4101368f9 (diff)
more streaming
Diffstat (limited to 'dtrain/hstreaming/avgweights.rb')
-rwxr-xr-xdtrain/hstreaming/avgweights.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/dtrain/hstreaming/avgweights.rb b/dtrain/hstreaming/avgweights.rb
deleted file mode 100755
index d5cfaa4d..00000000
--- a/dtrain/hstreaming/avgweights.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env ruby1.9.1
-
-
-STDIN.set_encoding 'utf-8'
-
-#shard_count_key = "__SHARD_COUNT__"
-
-w = {}
-c = {}
-w.default = 0
-c.default = 0
-while line = STDIN.gets
- key, val = line.split /\t/
- w[key] += val.to_f
- c[key] += 1.0
-end
-
-#shard_count = w["__SHARD_COUNT__"]
-
-w.each_key { |k|
- #if k == shard_count_key then next end
- #if k == "__bias" then next end
- puts "#{k}\t#{w[k]/c[k]}" #{w[k]/shard_count}"
-}
-
-#puts "#{shard_count_key}\t#{w[shard_count_key]}"
-