Unit 123 (NLP)
Unit 123 (NLP)
1. Explain the importance of different forms of knowledge such as syntactic, semantic, and pragmatic
knowledge in enhancing the performance and accuracy of Natural Language Processing (NLP)
systems.
2. Distinguish between Natural Language Understanding (NLU) and Natural Language Generation
(NLG) in terms of their functions and applications within the field of Natural Language Processing
(NLP).
3. Explain Ambiguity in Natural language and discuss the different types of ambiguity.
4. What are the various issues in natural language processing? Explain
Unit-2
Unit-3
1.Given the sentence "I saw the man with the telescope", apply parsing techniques to identify the
different syntactic structures.
2. Evaluate the impact of hybrid parsing models on NLP applications such as chatbots and search
engines.
3. Explain how probabilistic parsing differs from rule-based parsing.
Probabilistic parsing and rule-based parsing are two different approaches used in Natural
Language Processing (NLP) for syntactic analysis of sentences.
Rule-Based Parsing
Uses predefined grammar rules: It relies on handcrafted grammatical rules (such as
Context-Free Grammar (CFG)) to parse sentences.
Strict and deterministic: The parser follows a fixed set of rules to analyze the
structure of a sentence.
Example Approach: A top-down or bottom-up parser that applies syntactic rules to
build a parse tree.
Limitation: Struggles with ambiguity (where multiple interpretations exist) and is
less effective for real-world noisy text.
S → NP VP
NP → Det N
VP → V NP
Det → "the"
N → "cat"
V → "chased"