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