Building and training a multilayer perceptron (MLP) model using Keras, with Tensorflow as its backend for topic classification <<<
- Build and train a multilayer perceptron (MLP) with Keras
- Perform topic classification with neural networks
Worked with the Reuters dataset, a set of short newswires and their topics, published by Reuters in 1986. It's a very simple, widely used toy dataset for text classification. There are 46 different topics, some of which are more represented than others. But each topic has at least 10 examples in the training set. So in this project, you will build a MLP feed-forward neural network to classify Reuters newswires into 46 different mutually-exclusive topics.
- Project Overview and Import Libraries
- Load the Reuters Dataset
- Vectorize Sequences and One-hot Encode Class Labels
- Build Multilayer Perceptron Model
- Train Model
- Evaluate Model on Test Data
- Data Science
- Deep Learning
- Machine Learning
- Tensorflow
- keras