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:

  1. Learn the vector representation for each word using an embedding model
  2. Take vector sum or average of embeddings as the text representation
  3. Pass through one or more feed-forward layers, known as Multi-Layer Perceptrons (MLPs)
  4. Perform classification on final layer's representation using a classifier

0

1

Updated 2022-05-22

Tags

Deep Learning

Data Science