1 write to _host
Microsoft.ML.Vision (1)
DnnRetrainTransform.cs (1)
1231
_host
= Contracts.CheckRef(env, nameof(env)).Register(nameof(DnnRetrainEstimator));
8 references to _host
Microsoft.ML.Vision (8)
DnnRetrainTransform.cs (8)
1234
var inputTuple = DnnRetrainTransformer.GetInputInfo(
_host
, tensorFlowModel.Session, options.InputColumns);
1236
_outputTypes = DnnRetrainTransformer.GetOutputInfo(
_host
, tensorFlowModel.Session, options.OutputColumns).outputTypes;
1255
_host
.CheckValue(inputSchema, nameof(inputSchema));
1262
throw
_host
.ExceptSchemaMismatch(nameof(inputSchema), "input", input);
1264
throw
_host
.ExceptSchemaMismatch(nameof(inputSchema), "input", input, "vector", col.GetTypeString());
1267
throw
_host
.ExceptSchemaMismatch(nameof(inputSchema), "input", input, expectedType.ToString(), col.ItemType.ToString());
1283
_host
.CheckValue(input, nameof(input));
1285
_transformer = new DnnRetrainTransformer(
_host
, _options, _tensorFlowModel, input);