diff options
Diffstat (limited to 'test/test_hg.rb')
-rwxr-xr-x | test/test_hg.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_hg.rb b/test/test_hg.rb index 420d77f..67ff08a 100755 --- a/test/test_hg.rb +++ b/test/test_hg.rb @@ -12,6 +12,8 @@ def main #hypergraph, nodes_by_id = HG::read_hypergraph_from_json('../example/3/3.json', semiring, true) path, score = HG::viterbi_path hypergraph, nodes_by_id[-1], semiring s = HG::derive path, path.last.head, [] + hypergraph.nodes.each { |i| puts "#{i.id} #{i.score}" } + puts "---" puts "#{s.map { |i| i.word }.join ' '}" puts Math.log score puts |