2 implementations of GarbageThreshold
Microsoft.ML.Transforms (2)
Dracula\CountTable.cs (1)
41public float GarbageThreshold { get; private set; } // garbage bin threshold
Dracula\MultiCountTable.cs (1)
393public float GarbageThreshold => 0;
2 references to GarbageThreshold
Microsoft.ML.Transforms (2)
Dracula\Featurizer.cs (1)
151bool isGarbage = sum < countTable.GarbageThreshold;
Dracula\MultiCountTable.cs (1)
381Contracts.Check(baseCountTable.GarbageThreshold == 0, "Garbage bin not supported for shared table");