colada 0.8.3.0 → 0.8.4.0
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
- colada.cabal +1/−1
- colada.hs +1/−1
colada.cabal view
@@ -1,5 +1,5 @@ Name: colada-Version: 0.8.3.0+Version: 0.8.4.0 Synopsis: Colada implements incremental word class class induction using online LDA Description: Colada implements incremental word class class induction using
colada.hs view
@@ -197,7 +197,7 @@ find t i = IntMap.findWithDefault 0 i t tabulate t = map (Text.pack . Printf.printf "%.1f") . map (find t)- $ [0 .. size]+ $ [0 .. size-1] in Text.unlines . map (\ (k, v) -> Text.unwords $ [k] ++ tabulate v) . Map.toList