logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Graph::Reader::HTK - read an HTK lattice in as an instance of Graph

Author

       Neil Bowers <neil@bowers.com>

Description

       This module can be used to read a directed graph in the HTK <http://htk.eng.cam.ac.uk> lattice format. It
       returns an instance of the Graph class.

Name

       Graph::Reader::HTK - read an HTK lattice in as an instance of Graph

Repository

       <https://github.com/neilb/Graph-ReadWrite>

See Also

       Graph
           Jarkko  Hietaniemi's  Graph class and others, used for representing and manipulating directed graphs.
           Available from CPAN.  Also described / used in the  chapter  on  directed  graph  algorithms  in  the
           AlgorithmsinPerl book from O'Reilly.

       Graph::Reader
           The  base-class  for  this  module,  which defines the public methods, and describes the ideas behind
           Graph reader and writer modules.

       Graph::Writer::HTK
           A class which will write a perl Graph out as an HTK lattice.

       HTK <http://htk.eng.cam.ac.uk>
           The Hidden Markov Model Toolkit.

Synopsis

         use Graph::Reader::HTK;

         $reader = Graph::Reader::HTK->new;
         $graph = $reader->read_graph('mylattice.lat');

See Also