Showing posts with label Natural Language Processing - Acadamic. Show all posts
Showing posts with label Natural Language Processing - Acadamic. Show all posts

NLP - Acadamic Learning Topics

 Natural Learning Processing

Videos Playlist

Part-1

➡️NLP phases:  Linkđź”— 

Lexical analysis, Syntactic analysis, Semantic analysis, Discourse Integration, Pragmatic Analysis.

➡️Noisy channel model: Wikipediađź”— : Framework used in spell checkers


➡️Concepts of Parts of Speech and Formal Grammar of Natural Grammar of English: Web Link

Part-2

➡️N-gram model: PPTYT video

➡️Language Models: YT video

➡️Neural Networks: PPT

Part-3

➡️POS tagging: YT Video (rule based, Transformation based, Probablistic based)

➡️Hidden Markov Model: YT video (N-gram: 2 Steps)


Part - 4 

➡️Parsing in NLP: PPT 

➡️Tree Bank: PPT

➡️CKY parsing: YT Video (Also probablistic CKY)


Part - 5 

➡️Vector Semantics: Web

➡️CBOW: GFG

➡️Skip-gram: Web

➡️Wordsense and WordNet: ChatGPT













Popular Post

MindMaps

Featured post

Question 1: Reverse Words in a String III

  def reverseWords(s: str) -> str: words = s.split() return ' '.join(word[::-1] for word in words)