Introduction

In this section, you will be building an LSTM (long short-term memory) network for language modeling.

A. Language modeling

The main idea of machine learning in NLP is to train a model to understand a text corpus well enough so that it can automatically perform tasks such as text classification or text generation. In order to do this, a ...

Ask