This course is best suited for software engineers, data scientists, and graduate students in computer science or engineering fields who wish to develop expertise in building and deploying natural language processing systems to solve real-world language understanding challenges.
You will master core NLP tasks such as Part-of-Speech tagging, Named Entity Recognition, sentiment analysis, and Neural Machine Translation while implementing various neural architectures from Recurrent Neural Networks and bidirectional RNNs to Conditional Random Fields and state-of-the-art transformer models. The course emphasizes practical application through extensive laboratory work and projects, where you will develop complete NLP pipelines using frameworks like PyTorch and Hugging Face, learning to preprocess data, train models, and evaluate performance using industry-standard metrics. By the end of the course, you will be equipped with both theoretical understanding and practical skills to design, implement, and optimize NLP solutions for real-world engineering applications, from chatbots and translation systems to information extraction and text analysis tools. The curriculum culminates in a comprehensive capstone project where you will apply multiple techniques learned throughout the course to solve a complex language processing challenge.
You will be equipped with both theoretical knowledge to tackle complex language processing problems in industry settings, enabling you to build production-ready NLP applications that can understand, interpret, and generate human language effectively.
This module delves into the critical preprocessing step of tokenization in NLP, where text is segmented into smaller units called tokens. You will explore various tokenization techniques, including character-based, word-level, Byte Pair Encoding (BPE), WordPiece, and Unigram tokenization. Then you’ll examine the importance of normalization and pre-tokenization processes to ensure text uniformity and improve tokenization accuracy. Through practical examples and hands-on exercises, students will learn to handle out-of-vocabulary (OOV) issues, manage large vocabularies efficiently, and understand the computational complexities involved. By the end of the module, you will be equipped with the knowledge to implement and optimize tokenization methods for diverse NLP applications.
涵盖的内容
1个视频13篇阅读材料2个作业1个应用程序项目
显示有关单元内容的信息
1个视频•总计1分钟
Meet Your Faculty•1分钟
13篇阅读材料•总计69分钟
Course Introduction•2分钟
Syllabus - Applied Natural Language Processing in Engineering Part 2•10分钟
Academic Integrity•1分钟
Week 8 Overview•2分钟
Introduction•5分钟
Pre-Tokenization•5分钟
Character-based Tokenization•5分钟
Word-level Tokenization•5分钟
Byte Pair Encoding (BPE)•10分钟
WordPiece Tokenization•10分钟
Unigram Tokenization•10分钟
Vocabulary Pruning in Unigram Tokenization•2分钟
Summary and Final Thoughts•2分钟
2个作业•总计75分钟
Assess Your Learning: Tokenization•30分钟
Module 8 Quiz•45分钟
1个应用程序项目•总计10分钟
The Viterbi Algorithm for Tokenization•10分钟
Language Models
第 2 单元•小时 后完成
单元详情
In this module, we will explore foundational models in natural language processing (NLP), focusing on language models, feedforward neural networks (FFNNs), and Hidden Markov Models (HMMs). Language models are crucial in predicting and generating sequences of text by assigning probabilities to words or phrases within a sentence, allowing for applications such as autocomplete and text generation. FFNNs, though limited to fixed-size contexts, are foundational neural architectures used in language modeling, learning complex word relationships through non-linear transformations. In contrast, HMMs model sequences based on hidden states, which influence observable outcomes. They are particularly useful in tasks like part-of-speech tagging and speech recognition. As the module progresses, we will also examine modern advancements like neural transition-based parsing and the evolution of language models into sophisticated architectures such as transformers and large-scale pre-trained models like BERT and GPT. This module provides a comprehensive view of how language modeling has developed from statistical methods to cutting-edge neural architectures.
涵盖的内容
2个视频19篇阅读材料4个作业
显示有关单元内容的信息
2个视频•总计8分钟
Language Models•4分钟
Hidden Markov Models•4分钟
19篇阅读材料•总计183分钟
Week 9 Overview•2分钟
Introduction to Language Models•5分钟
Probability Assignment in Language Model•2分钟
Evolution of Language Models•10分钟
State-of-the-Art Models•2分钟
N-Gram•5分钟
Probabilities in Language Models•10分钟
Example: The Cat Sat on the Mat•10分钟
Limitations of N-Gram Models•5分钟
FFNN in Language Modeling•20分钟
Pros and Cons of FFNNs•5分钟
Introduction to HMM•10分钟
Hidden Markov Models•2分钟
Mathematical Representation of HMMs•15分钟
Likelihood Problem: Forward Algorithm•10分钟
Decoding Problem: Viterbi Algorithm•15分钟
Learning Problem: Baum-Welch Algorithm•15分钟
Example of HMM•20分钟
HMMs in Speech Recognition•20分钟
4个作业•总计120分钟
Assess Your Learning: Language Models•30分钟
Assess Your Learning: FFNNs•15分钟
Assess Your Learning: HMMs•30分钟
Module 9 Quiz•45分钟
Recurrent Neural Networks - RNNs
第 3 单元•小时 后完成
单元详情
In this module, we will explore Recurrent Neural Networks (RNNs), a fundamental architecture in deep learning designed for sequential data. RNNs are particularly well-suited for tasks where the order of inputs matters, such as time series prediction, language modeling, and speech recognition. Unlike traditional neural networks, RNNs have connections that allow them to “remember” information from previous steps by sharing parameters across time steps. This ability enables them to capture temporal dependencies in data, making them powerful for sequence-based tasks. However, RNNs come with challenges like vanishing and exploding gradients which affect their ability to learn long-term dependencies. Throughout the module, you will explore different RNN variants such as Long Short-Term Memory (LSTM) and Gated Recurrent Units (GRUs), which address these challenges. You will also delve into advanced training techniques and applications of RNNs in real-world NLP and time series problems.
涵盖的内容
2个视频22篇阅读材料2个作业1个应用程序项目
显示有关单元内容的信息
2个视频•总计4分钟
Recurrent Neural Networks•4分钟
The RNN Process•0分钟
22篇阅读材料•总计221分钟
Week 10 Overview•2分钟
Recurrent Neural Networks (RNNs)•2分钟
Challenges & Applications in RNN•5分钟
Parameter Sharing in RNN•5分钟
Dynamic Systems•5分钟
Dynamic Systems to RNN•10分钟
Computing Gradient in RNN•10分钟
RNN Advantages and Disadvantages•5分钟
Training an RNN Language Model•20分钟
Problems with RNN•15分钟
How to Solve these Issues?•15分钟
Gated RNN•15分钟
LSTM Equations•15分钟
Gated Recurrent Unit (GRU)•10分钟
Residual Neural Networks•20分钟
Skip Connection: The Key to Learning Residuals•15分钟
Conventions Used•2分钟
Step-by-Step Breakdown 1 - 2•5分钟
Step-by-Step Breakdown 3 A - G•15分钟
Step-by-Step Breakdown 3 H - N•15分钟
Step-by-Step Breakdown 4 - 6•10分钟
Perplexity Calculation•5分钟
2个作业•总计75分钟
Assess Your Learning: RNNs•30分钟
Module 10 Quiz•45分钟
1个应用程序项目•总计10分钟
Introduction to LSTM, GRU, and Residual Networks•10分钟
This module introduces students to advanced Natural Language Processing (NLP) techniques, focusing on foundational tasks such as Part-of-Speech (PoS) tagging, sentiment analysis, and sequence modeling with recurrent neural networks (RNNs). Students will examine how PoS tagging helps in understanding grammatical structures, enabling applications such as machine translation and named entity recognition (NER). The module delves into sentiment analysis, highlighting various approaches from traditional machine learning models (e.g., Naive Bayes) to advanced deep learning techniques (e.g., bidirectional RNNs and transformers). Students will learn to implement both forward and backward contextual understanding using bidirectional RNNs, which improves accuracy in tasks where sequence order impacts meaning. By the end of the course, students will gain hands-on experience building NLP models for real-world applications, equipping them to handle sequential data and capture complex dependencies in text analysis.
涵盖的内容
1个视频15篇阅读材料4个作业
显示有关单元内容的信息
1个视频•总计5分钟
Introduction to PoS Tagging, Bidirectional RNNs, and Sentiment Analysis•5分钟
15篇阅读材料•总计113分钟
Week 11 Overview•2分钟
Introduction to PoS Tagging•10分钟
How does PoS Tagging Works?•10分钟
Challenges in & Advantages of PoS Tagging•5分钟
Using Recurrent Neural Networks (RNNs) for PoS Tagging•10分钟
Steps in PoS Tagging with RNN•5分钟
Using LSTM or GRU in Place of Simple RNNs•10分钟
Conclusion•10分钟
Motivation•2分钟
Bidirectional RNNs•10分钟
Multi-layer RNNs•10分钟
Introduction•5分钟
Approaches with RNNs•20分钟
Other Approaches for Sentiment Analysis•2分钟
Conclusion•2分钟
4个作业•总计135分钟
Assess Your Learning: PoS•30分钟
Assess Your Learning: Bidirectional RNNs•30分钟
Assess Your Learning: Sentiment Analysis•30分钟
Module 11 Quiz •45分钟
CRF, NER and, NMT
第 5 单元•小时 后完成
单元详情
This module introduces you to core tasks and advanced techniques in Natural Language Processing (NLP), with a focus on structured prediction, machine translation, and sequence labeling. You will explore foundational topics such as Named Entity Recognition (NER), Part-of-Speech (PoS) tagging, and sentiment analysis and use neural network architectures like Recurrent Neural Networks (RNNs), Long Short-Term Memory (LSTM) networks, and Conditional Random Fields (CRFs). The module will cover key concepts in sequence modeling, such as bidirectional and multi-layer RNNs, which capture both past and future context to enhance the accuracy of tasks like NER and PoS tagging. Additionally, you will delve into Neural Machine Translation (NMT), examining encoder-decoder models with attention mechanisms to address challenges in translating long sequences. Practical implementations will involve integrating these models into real-world applications, focusing on handling complex language structures, rare words, and sequential dependencies. By the end of this module, you will be proficient in building and optimizing deep learning models for a variety of NLP tasks.
涵盖的内容
3个视频18篇阅读材料4个作业
显示有关单元内容的信息
3个视频•总计7分钟
Introduction to CRF•3分钟
Introduction to NER and NMT•4分钟
Visualization of the NMT Process •0分钟
18篇阅读材料•总计164分钟
Week 12 Overview•2分钟
Definition of CRF•10分钟
CRF Model with LSTM•10分钟
Combining LSTM with CRF•20分钟
Calculating the Probability of a Sequence, Log-Probability & Training Objective•15分钟
Decoding: Finding the Best Label Sequence•5分钟
Details on LSTM-CRF Components•15分钟
Summary of the Transition Matrix in CRF•5分钟
Named Entity Recognition (NER)•10分钟
NER Using RNNs/LSTMs•10分钟
BiLSTM for NER•10分钟
CRF Layer for Sequencing Labeling•10分钟
Attention in NER•10分钟
Table: Alphabetical List of PoS Tags used in the Penn Treebank Project•5分钟
Machine Translation Overview•5分钟
Sequence-to-Sequence Model for NMT•10分钟
Learning in NMT: Optimization and Loss Function•10分钟
Byte Pair Encoding (BPE) for Handling Rare Words•2分钟
4个作业•总计135分钟
Assess Your Learning: CRFs•30分钟
Assess Your Learning: NERs•30分钟
Assess Your Learning: NMTs•30分钟
Module 12 Quiz•45分钟
Attention & Transformers
第 6 单元•小时 后完成
单元详情
In this module we’ll focus on attention mechanisms and explore the evolution and significance of attention in neural networks, starting with its introduction in neural machine translation. We’ll cover the challenges of traditional sequence-to-sequence models and how attention mechanisms, particularly in Transformer architectures, address issues like long-range dependencies and parallelization, which enhances the model's ability to focus on relevant parts of the input sequence dynamically. Then, we’ll turn our attention to Transformers and delve into the revolutionary architecture introduced by Vaswani et al. in 2017, which has significantly advanced natural language processing. We’ll cover the core components of Transformers, including self-attention, multi-head attention, and positional encoding to explain how these innovations address the limitations of traditional sequence models and enable efficient parallel processing and handling of long-range dependencies in text.
涵盖的内容
2个视频25篇阅读材料3个作业2个应用程序项目
显示有关单元内容的信息
2个视频•总计9分钟
Attention Mechanisms•3分钟
Transformers•6分钟
25篇阅读材料•总计239分钟
Week 13 Overview•2分钟
Introduction and Motivation•5分钟
Sequence-to-Sequence Models•5分钟
Challenges of Seq2Seq Models•15分钟
Attention Mechanisms•5分钟
General Seq2Seq Models•10分钟
Detailed Attention Process in Seq2Seq•15分钟
Introduction and Transformer Architecture•2分钟
Applications of Transformer Architectures•5分钟
Key, Query, Value•3分钟
Self-Attention•15分钟
Self-Attention as Routing•5分钟
Computing and Weighting Values•10分钟
Self-Attention in Matrix Form•10分钟
Position Representations •10分钟
The Intuition•15分钟
Elementwise Nonlinearity•20分钟
Multi-head Attention•10分钟
Sequence-Tensor Form•10分钟
Transformers•15分钟
Types of Transformers•20分钟
Cross-Attention•15分钟
Decoder Process with Cross-Attention•10分钟
Drawbacks of Transformers•5分钟
Conclusion•2分钟
3个作业•总计105分钟
Assess Your Learning: Attention•30分钟
Assess Your Learning: Transformer•30分钟
Module 13 Quiz•45分钟
2个应用程序项目•总计40分钟
Multi-Head Visualization•20分钟
Encoder-Decoder Example•20分钟
Pre-training
第 7 单元•小时 后完成
单元详情
In this module, we’ll hone in on pre-training and explore the foundational role of pre-training in modern NLP models, highlighting how models are initially trained on large, general datasets to learn language structures and semantics. This pre-training phase, often involving tasks like masked language modeling, equips models with broad linguistic knowledge, which can then be fine-tuned on specific tasks, enhancing performance and reducing the need for extensive task-specific data.
涵盖的内容
1个视频19篇阅读材料2个作业
显示有关单元内容的信息
1个视频•总计5分钟
Pre-Training•5分钟
19篇阅读材料•总计209分钟
Week 14 Overview•2分钟
Introduction to Pre-Training•15分钟
Pretrained Word Embeddings•10分钟
Learning from Reconstructing Input•10分钟
Pretraining Through Language Modeling•20分钟
Pretraining for Three Types of Architectures•10分钟
BERT: Bidirectional Encoder Representations from Transformers•15分钟
BERT Pre-training •10分钟
Fine-tuning•15分钟
Full fine-tuning vs Parameter-Efficient Fine-tuning•15分钟
Limitations of Pre-trained Encoders and Extensions of BERT•10分钟
Pretraining Decoders•10分钟
Generative Pretrained Transformer (GPT)•10分钟
Scaling Laws•15分钟
What kinds of things does pretraining teach?•10分钟
Pretraining encoder-decoders: What pretraining objective to use?•15分钟
Founded in 1898, Northeastern is a global research university with a distinctive, experience-driven approach to education and discovery. The university is a leader in experiential learning, powered by the world’s most far-reaching cooperative education program. The spirit of collaboration guides a use-inspired research enterprise focused on solving global challenges in health, security, and sustainability.
When will I have access to the lectures and assignments?
To access the course materials, assignments and to earn a Certificate, you will need to purchase the Certificate experience when you enroll in a course. You can try a Free Trial instead, or apply for Financial Aid. The course may offer 'Full Course, No Certificate' instead. This option lets you see all course materials, submit required assessments, and get a final grade. This also means that you will not be able to purchase a Certificate experience.
What will I get if I purchase the Certificate?
When you purchase a Certificate you get access to all course materials, including graded assignments. Upon completing the course, your electronic Certificate will be added to your Accomplishments page - from there, you can print your Certificate or add it to your LinkedIn profile.
Is financial aid available?
Yes. In select learning programs, you can apply for financial aid or a scholarship if you can’t afford the enrollment fee. If fin aid or scholarship is available for your learning program selection, you’ll find a link to apply on the description page.