Learn Before
Concept
Feed-Forward Neural Networks
A text classification category that views text as a "bag of words." This is the simplest model for text classification, but is still very successful.
Steps:
- Learn the vector representation for each word using an embedding model
- Take vector sum or average of embeddings as the text representation
- Pass through one or more feed-forward layers, known as Multi-Layer Perceptrons (MLPs)
- Perform classification on final layer's representation using a classifier
0
1
Updated 2022-05-22
Tags
Deep Learning
Data Science