diff options
Diffstat (limited to 'test_hg.rb')
-rwxr-xr-x | test_hg.rb | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -4,17 +4,16 @@ require_relative 'hg' semiring = ViterbiSemiring.new -hypergraph, nodes_by_id = HG::read_hypergraph_from_json('x.json', semiring, true) +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, [] puts "#{s.map { |i| i.word }.join ' '}" puts Math.log score puts - #hypergraph.reset #paths = HG::all_paths hypergraph, nodes_by_id[-1] -#paths.each { |p| +#paths.each_with_index { |p,i| # s = HG::derive p, p.last.head, [] -# puts "#{s.map { |i| i.word }.join ' '}" +# puts "#{i+1}. #{s.map { |i| i.word }.join ' '}" #} |