Precision (statistics): Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Melcombe
bold for redirected title
 
Line 1: Line 1:
A '''filtered-popping recursive transition network''' ('''FPRTN'''),<ref name="sastre09jb">Javier M. Sastre, [http://dx.doi.org/10.1007/978-3-642-02979-0_28 "Efficient parsing using filtered-popping recursive transition networks"], ''Lecture Notes in Artificial Intelligence'', '''5642''':241-244, 2009</ref> or simply '''filtered-popping network''' ('''FPN'''), is a [[recursive transition network]] ([[Recursive transition network|RTN]])<ref name="woods70jb"> William A. Woods, [http://doi.acm.org/10.1145/355598.362773 "Transition network grammars for natural language analysis"], ''Communications of the ACM'', ''ACM Press'', '''13''':10:591-606, 1970</ref> extended with a map of states to keys where returning from a [[subroutine]] jump requires the acceptor and return states to be mapped to the same key. [[Recursive transition network|RTNs]] are [[finite-state machines]] that can be seen as [[finite-state automata]] extended with a [[stack (data structure)|stack]] of return states; as well as consuming transitions and <math>\varepsilon</math>-transitions, [[Recursive transition network|RTNs]] may define call transitions. These transitions perform a [[subroutine]] jump by pushing the transition's target state onto the stack and bringing the machine to the called state. Each time an acceptor state is reached, the return state at the top of the stack is popped out, provided that the stack is not empty, and the machine is brought to this state.
Here are some tip-offs to [http://Mondediplo.com/spip.php?page=recherche&recherche=potential+rip-offs potential rip-offs] For those who have almost any issues concerning wherever in [http://Www.adobe.com/cfusion/search/index.cfm?term=&addition&loc=en_us&siteSection=home addition] to tips on how to make use of [http://trapandbass.com/x/frenchdraindesignimages736785 Basement Waterprrofing], it is possible to email us with the web-page. .
 
Throughout this article we refer to filtered-popping recursive transition networks as ''FPNs'', though this acronym is ambiguous (e.g.: [[fuzzy Petri nets]]). ''Filtered-popping networks'' and ''FPRTNs'' are unambiguous alternatives.  
 
==Formal Definition==
A FPN is a structure <math>(Q, K, \Sigma, \delta, \kappa, Q_I, F)</math> where
 
*<math>Q</math> is a finite set of states,
*<math>K</math> is a finite set of keys,
*<math>\Sigma</math> is a finite input alphabet,
*<math>\delta: Q \times (\Sigma \cup \{\varepsilon\} \cup Q) \to Q</math> is a partial transition function, <math>\varepsilon</math> being the empty symbol,
*<math>\kappa: Q \to K</math> is a map of states to keys,
*<math>Q_I \subseteq Q</math> is the set of initial states, and
*<math>F \subseteq Q</math> is the set of acceptance states.
 
==Transitions==
Transitions represent the possibility of bringing the FPN from a source state <math>q_s</math> to a target state <math>q_t</math> by possibly performing an additional action. Depending on this action, we distinguish the following types of ''explicitly''-defined transitions:
 
*'''<math>\varepsilon</math>-transitions''' are transitions of the form <math>\delta(q_s,\varepsilon) \to q_t</math> and perform no additional action,
*'''consuming transitions''' are transitions of the form <math>\delta(q_s, \sigma) \to q_t</math> and consume an input symbol <math>\sigma</math>, and
*'''call transitions''' are transitions of the form <math>\delta(q_s, q_c) \to q_t</math> and perform a [[subroutine]] jump to called state <math>q_c</math> before reaching <math>q_t</math>.
 
The behaviour of call transitions is governed by two kinds of ''implicitly''-defined transitions:
 
*for each call transition <math>\delta(q_s, q_c) \to q_t</math> the FPN implicitly defines a '''push transition''' that brings the machine from <math>q_s</math> to <math>q_c</math> by pushing <math>q_t</math> onto the [[stack (data structure)|stack]], and
*for each pair of states <math>(q_f, q_r) \in F \times Q</math> the FPN implicitly defines a '''pop transition''' that brings the machine from <math>q_f</math> to <math>q_r</math> by popping <math>q_r</math> from the stack [[iff]] <math>q_r</math> is the state at the top of the stack and <math>\kappa(q_f) = \kappa(q_r)</math>.
 
Push transitions initialize [[subroutine]] jumps and pop transitions are equivalent to [[return statements]].
 
==Purpose==
A ([[natural language]]) text can be enriched with meta-information by the application of a [[RTN with output]]; for instance, a RTN inserting [[XML]] tags can be used for transforming a [[plain text]] into a structured XML document. A RTN with output representing a [[natural language]] [[grammar]] would delimit and add the syntactic structure of each text sentence (see [[parsing]]). Other RTNs with output could simply mark text segments containing relevant information (see [[information extraction]]). The application of a RTN with output representing an [[ambiguous grammar]] results in a set of possible translations or interpretations of the input. Computing this set has an exponential [[worst-case cost]], even for an [[Earley parser]] for RTNs with output,<ref name="sastre09ja">Javier M. Sastre &amp; Mikel L. Forcada, [http://dx.doi.org/10.1007/978-3-642-04235-5_17 "Efficient parsing using recursive transition networks with output"], ''Lecture Notes in Computer Science'', '''5603''':192-204, 2009</ref> due to cases in which the number of translations increases exponentially [[wikt:WRT|w.r.t.]] the input length; for instance, the number of interpretations of a [[natural language]] sentence increases exponentially w.r.t. the number of unresolved [[prepositional phrase]] attachments:<ref name="ratnaparkhi98ip">Adwait Ratnaparkhi, [http://www.aclweb.org/anthology/P/P98/P98-2177.pdf "''Statistical models for unsupervised prepositional phrase attachment''"], ACL-36: Proceedings of the 36th Annual Meeting of the Association for Computational Linguistics and 17th International Conference on Computational Linguistics, pp. 1079-1085, 1998</ref><ref>Miriam Butt, [http://ling.uni-konstanz.de/pages/home/butt/main/material/chunk.pdf "''Chunk/Shallow parsing''"], lecture notes, 2002</ref>
* in sentence ''the girl saw the monkey with the telescope'', it is unknown whether the girl used the telescope or the monkey was holding it (2<sup>1</sup> interpretations),
* in sentence ''the girl saw the monkey with the telescope in the garden'', it is also unknown whether the monkey was in the garden or the action took place in the garden (2<sup>2</sup> interpretations),
* in sentence ''the girl saw the monkey with the telescope in the garden under the tree'', it is unknown as well whether the monkey was under the tree or the action took place under the tree (2<sup>3</sup> interpretations),
* etc.
 
FPNs serve as a compact representation of this set of translations, allowing to compute it in cubic time by means of an Earley-like parser.<ref name="sastre09jb"/> FPN states correspond to execution states (see [[instruction steps]]) of an Earley-parser for [[RTNs]] ''without'' output, and FPN transitions correspond to possible translations of input symbols. The <math>\kappa</math> map of the resulting FPN gives the correspondence between the represented output segments and the recognized input segments: given a recognized input sequence <math>\sigma_1\ldots\sigma_l</math> and a FPN path <math>p</math> starting at a state <math>q</math> and ending at a state <math>q^\prime</math>, <math>p</math> represents a possible translation of input segment <math>\sigma_{\kappa(q)+1}\ldots\sigma_{\kappa(q^\prime)}</math>. The filtered-popping feature is required in order to avoid FPN paths to represent translations of ''disconnected'' or ''overlapping'' input segments: a FPN call may contain several translation paths from the called state to an acceptor state, where the input segments they correspond to share the same start point but do not necessarily have the same length. Only return states corresponding to the same input point than the acceptor state finishing the call are ''valid'' return states.
 
==References==
{{reflist}}
 
[[Category:Natural language processing]]
[[Category:Computational linguistics]]

Latest revision as of 18:12, 18 October 2014

Here are some tip-offs to potential rip-offs For those who have almost any issues concerning wherever in addition to tips on how to make use of Basement Waterprrofing, it is possible to email us with the web-page. .