Class to represent a simple unigram: a set of token/count.
An unigram is commonly a data structure with tokens and their probabilities, and a back-off value. Is is a statistical language model. This class is a simplified version with only tokens and their occurrences.
Notice that tokens are case-sensitive.