CYK algorithm: Difference between revisions

Content deleted Content added
I don't see what k-best has to do with CKY...
The deleted statement doesn't contribute anything unless elaborated, IMO
Line 56:
 
It is also possible to extend the CYK algorithm to parse strings using [[weighted context-free grammar|weighted]] and [[stochastic context-free grammar]]s. Weights (probabilities) are then stored in the table P instead of booleans, so P[i,j,A] will contain the minimum weight (maximum probability) that the substring from i to j can be derived from A. Further extensions of the algorithm allow all parses of a string to be enumerated from lowest to highest weight (highest to lowest probability).
 
The CKY algorithm can be generalized from [[context-free grammar]] to [[hypergraph]].
 
==References==