2 implementations of ICountTable
Microsoft.ML.Transforms (2)
Dracula\CountTable.cs (1)
34internal abstract class CountTableBase : ICountTable, ICanSaveModel
Dracula\MultiCountTable.cs (1)
367private sealed class ProxyCountTable : ICountTable
7 references to ICountTable
Microsoft.ML.Transforms (7)
Dracula\Featurizer.cs (2)
144var countTable = _countTables[iCol, iSlot]; 192private void GenerateLogOdds(int iCol, ICountTable countTable, Span<float> counts, Span<float> logOdds, float sum)
Dracula\MultiCountTable.cs (5)
42public abstract ICountTable this[int iCol, int iSlot] { get; } 141public override ICountTable this[int iCol, int iSlot] 294public override ICountTable this[int iCol, int iSlot] 370private readonly ICountTable _table; 378public ProxyCountTable(int iCol, int iSlot, ICountTable baseCountTable)