1 write to _host
Microsoft.ML.Data (1)
Transforms\Hashing.cs (1)
1931
_host
= env.Register(nameof(HashingEstimator));
6 references to _host
Microsoft.ML.Data (6)
Transforms\Hashing.cs (6)
1938
throw
_host
.ExceptParam(nameof(ColumnOptions.Combine), "When the 'Combine' option is specified, invert hashes are not supported.");
1940
throw
_host
.ExceptParam(nameof(ColumnOptions.Combine), "When the 'Combine' option is specified, ordered hashing is not supported.");
1947
public HashingTransformer Fit(IDataView input) => new HashingTransformer(
_host
, input, _columns);
1955
_host
.CheckValue(inputSchema, nameof(inputSchema));
1960
throw
_host
.ExceptSchemaMismatch(nameof(inputSchema), "input", colInfo.InputColumnName);
1962
throw
_host
.ExceptParam(nameof(inputSchema), ExpectedColumnType);