Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
An augmented transition network (ATN) is an RTN that has been extended in three ways: (1) A set of registers has been added; these can be used to store information, such as partially formed derivation trees, between jumps to different subnetworks.
In early NLP, RTNs and ATNs were graph-based tools for parsing sentence grammar.
1. RTN (Recursive Transition Network)
Think of an RTN as a flow chart of grammar rules. It uses “states” (nodes) and “transitions” (arcs) to check if a sentence structure is valid. It’s “recursive” because when it hits a complex phrase (like a noun phrase), it can jump to a sub-network to process that specific part before returning. It excels at mapping structure, but it lacks the memory to handle complex context or logic.
2. ATN (Augmented Transition Network)
An ATN is basically an RTN with a “notepad.” It adds memory registers to store information (like singular/plural agreement). It can perform tests and take actions, making it powerful enough to track context and semantic details.