ListOfFreqs ListOfFreqs module-attribute ¶ ListOfFreqs: TypeAlias = Sequence[Mapping[str, float]] A sequence of token-to-frequency mappings, one per corpus. Each mapping is {word: frequency} for a single corpus Example list_of_freqs = [ {"hi": 1, "hey": 2, "hello": 3}, {"hi": 2, "hey": 4, "bye": 6} ] Source