1 write to _host
Microsoft.ML.Data (1)
Transforms\ColumnConcatenatingEstimator.cs (1)
54_host = env.Register(nameof(ColumnConcatenatingEstimator));
12 references to _host
Microsoft.ML.Data (12)
Transforms\ColumnConcatenatingEstimator.cs (12)
56_host.CheckNonEmpty(outputColumnName, nameof(outputColumnName)); 57_host.CheckValue(inputColumnNames, nameof(inputColumnNames)); 58_host.CheckParam(inputColumnNames.Length > 0, nameof(inputColumnNames), "Input columns not specified"); 59_host.CheckParam(!inputColumnNames.Any(r => string.IsNullOrEmpty(r)), nameof(inputColumnNames), 71_host.CheckValue(input, nameof(input)); 72return new ColumnConcatenatingTransformer(_host, _name, _source); 77_host.Assert(col.IsValid); 89_host.AssertNonEmpty(sources); 107throw _host.ExceptSchemaMismatch(nameof(inputSchema), "input", sources[i]); 114throw _host.Except($"Column '{sources[i]}' is key. " + 119throw _host.Except($"Concatenated columns should have the same type. Column '{sources[i]}' has type of {col.ItemType}, " + 147_host.CheckValue(inputSchema, nameof(inputSchema));