2 writes to _bindings
Microsoft.ML.Data (2)
Transforms\GenerateNumberTransform.cs (2)
284_bindings = Bindings.Create(options, Source.Schema); 297_bindings = Bindings.Create(ctx, Source.Schema);
10 references to _bindings
Microsoft.ML.Data (10)
Transforms\GenerateNumberTransform.cs (10)
320_bindings.Save(ctx); 323public override DataViewSchema OutputSchema => _bindings.AsSchema; 332if (_bindings.AnyNewColumnsActive(predicate)) 342var inputPred = _bindings.GetDependencies(predicate); 343var active = _bindings.GetActive(predicate); 347return new Cursor(Host, _bindings, input, active); 355var inputPred = _bindings.GetDependencies(predicate); 358var active = _bindings.GetActive(predicate); 370cursors[i] = new Cursor(Host, _bindings, inputs[i], active); 378return new DataViewRowCursor[] { new Cursor(Host, _bindings, input, active) };