Commit 0aedc0d2 authored by Davis King's avatar Davis King

updated docs

parent 8662d1c1
...@@ -53,6 +53,7 @@ ...@@ -53,6 +53,7 @@
<item>find_max_factor_graph_nmplp</item> <item>find_max_factor_graph_nmplp</item>
<item>find_max_factor_graph_viterbi</item> <item>find_max_factor_graph_viterbi</item>
<item>find_max_factor_graph_potts</item> <item>find_max_factor_graph_potts</item>
<item>find_max_parse_cky</item>
<item>min_cut</item> <item>min_cut</item>
</section> </section>
...@@ -76,6 +77,7 @@ ...@@ -76,6 +77,7 @@
<item>line_search</item> <item>line_search</item>
<item>graph_cut_score</item> <item>graph_cut_score</item>
<item>potts_model_score</item> <item>potts_model_score</item>
<item>parse_tree_to_string</item>
</section> </section>
</top> </top>
...@@ -524,6 +526,33 @@ However, for graphs with cycles, the solution may be approximate. ...@@ -524,6 +526,33 @@ However, for graphs with cycles, the solution may be approximate.
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
<component>
<name>find_max_parse_cky</name>
<file>dlib/optimization.h</file>
<spec_file link="true">dlib/optimization/find_max_parse_cky_abstract.h</spec_file>
<description>
This function implements the CKY parsing algorithm. In particular, it
finds the maximum scoring binary parse tree that parses an input sequence of tokens.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>parse_tree_to_string</name>
<file>dlib/optimization.h</file>
<spec_file link="true">dlib/optimization/find_max_parse_cky_abstract.h</spec_file>
<description>
This is a pair of functions useful for converting a parse tree output by
<a href="#find_max_parse_cky">find_max_parse_cky</a> into a bracketed string
suitable for displaying the parse tree.
</description>
</component>
<!-- ************************************************************************* -->
<component> <component>
<name>find_max_factor_graph_viterbi</name> <name>find_max_factor_graph_viterbi</name>
<file>dlib/optimization.h</file> <file>dlib/optimization.h</file>
......
...@@ -82,6 +82,14 @@ ...@@ -82,6 +82,14 @@
<term file="optimization.html" name="find_max_factor_graph_nmplp"/> <term file="optimization.html" name="find_max_factor_graph_nmplp"/>
<term file="optimization.html" name="find_max_factor_graph_viterbi"/> <term file="optimization.html" name="find_max_factor_graph_viterbi"/>
<term file="optimization.html" name="find_max_parse_cky"/>
<term file="optimization.html" name="parse_tree_to_string"/>
<term link="optimization.html#parse_tree_to_string" name="parse_tree_to_string_tagged"/>
<term file="dlib/optimization/find_max_parse_cky_abstract.h.html" name="parse_tree_to_string_error"/>
<term file="dlib/optimization/find_max_parse_cky_abstract.h.html" name="constituent"/>
<term file="dlib/optimization/find_max_parse_cky_abstract.h.html" name="parse_tree_element"/>
<term file="dlib/optimization/find_max_parse_cky_abstract.h.html" name="END_OF_TREE"/>
<term file="optimization.html" name="find_max_factor_graph_potts"/> <term file="optimization.html" name="find_max_factor_graph_potts"/>
<term file="optimization.html" name="min_cut"/> <term file="optimization.html" name="min_cut"/>
<term file="optimization.html" name="graph_cut_score"/> <term file="optimization.html" name="graph_cut_score"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment