2 writes to _tables
Microsoft.ML.Transforms (2)
Dracula\CMCountTable.cs (2)
227
_tables
= new Dictionary<int, double>[LabelCardinality][];
241
_tables
= new Dictionary<int, double>[LabelCardinality][];
9 references to _tables
Microsoft.ML.Transforms (9)
Dracula\CMCountTable.cs (9)
230
_tables
[iLabel] = new Dictionary<int, double>[_depth];
232
_tables
[iLabel][iDepth] = new Dictionary<int, double>();
246
_tables
[iLabel] = new Dictionary<int, double>[_depth];
249
_tables
[iLabel][iDepth] = new Dictionary<int, double>();
254
_tables
[iLabel][iDepth].Add(kvp.Key, kvp.Value);
272
foreach (var kvp in
_tables
[iLabel][iDepth])
286
if (!
_tables
[labelKey][i].ContainsKey(idx))
287
_tables
[labelKey][i].Add(idx, 0);
288
_tables
[labelKey][i][idx]++;