getUncoveredDictionaryTypes function exported ✓ 100.0%
Last updated: 2026-02-24T21:07:57.551Z
Metrics
LOC: 4
Complexity: 1
Params: 0
Coverage: 100.0% (2/2 lines, 3x executed)
Signature
getUncoveredDictionaryTypes(): : FieldDictionaryEntry[]
Summary
Get a summary of dictionary entries that don't yet have matching training samples. Useful for identifying gaps in dataset coverage.
Source Code
export function getUncoveredDictionaryTypes(): FieldDictionaryEntry[] {
const dist = getTrainingDistribution();
return FIELD_DICTIONARY.filter((e) => !(e.type in dist));
}
Dependencies (Outgoing)
| Target | Type |
|---|---|
| getTrainingDistribution | calls |
Impact (Incoming)
| Source | Type |
|---|---|
| EvalMisclassified | uses |
| FIELD_DICTIONARY | uses |