1 write to _inputSchema
Microsoft.ML.Transforms (1)
UngroupTransform.cs (1)
277_inputSchema = inputSchema; // This also makes InputColumnCount valid.
8 references to _inputSchema
Microsoft.ML.Transforms (8)
UngroupTransform.cs (8)
244/// Information of columns to be ungrouped in <see cref="_inputSchema"/>. 249/// <see cref="_pivotIndex"/>[i] is -1 means that the i-th column in both of <see cref="_inputSchema"/> and <see cref="OutputSchema"/> 257/// Note that input data's schema is stored as <see cref="_inputSchema"/>. 259public int InputColumnCount => _inputSchema.Count; 266/// when input data's schema is <see cref="_inputSchema"/>. 387var activeInput = Utils.BuildArray(_inputSchema.Count, predicate); 409_ectx.Assert(0 <= col && col < _inputSchema.Count); 421_ectx.Assert(0 <= col && col < _inputSchema.Count);