How to visualize Viterbi path in Latex or Graphviz

后端 未结 1 570
野的像风
野的像风 2020-12-21 19:35

I\'m looking for a way to visualize a Viterbi path in LaTeX or maybe Graphviz, much like in this example:

\"\"

<
相关标签:
1条回答
  • 2020-12-21 20:20

    Here's one way to achieve this using graphviz with invisible edges:

    graph {
      splines=false;
      nodesep=0.5;
      ranksep=0.5;
      node[shape=point, height=0.08];
      { rank=same; a1 -- b1 -- c1 -- d1 -- e1;}
      { rank=same; a2 -- b2; b2 -- c2[style=invis]; c2 -- d2; d2 -- e2[style=invis];}
      { rank=same; a3 -- b3[style=invis]; b3 -- c3; c3 -- d3[style=invis]; d3 -- e3;}
      edge[style=invis];
      a1 -- a2 -- a3;
      b1 -- b2 -- b3;
      c1 -- c2 -- c3;
      d1 -- d2 -- d3;
      e1 -- e2 -- e3;
      edge[style=solid, constraint=false];
      a2 -- b3 -- c2 -- d3 -- e2;
    }
    

    graphviz output

    0 讨论(0)
提交回复
热议问题