One Hot Representation

Posted by Beetle B. on Mon 15 May 2023

The one hot representation of a word is a vector the length of the vocabulary, with all 0’s except a 1 to represent that particular word.

This encoding has problems:

  1. There is no notion of similarity.
  2. Large number of dimensions.

The one hot representation is an example of a local representation.