1 write to _host
Microsoft.ML.Vision (1)
DnnRetrainTransform.cs (1)
1230
_host
= Contracts.CheckRef(env, nameof(env)).Register(nameof(DnnRetrainEstimator));
8 references to _host
Microsoft.ML.Vision (8)
DnnRetrainTransform.cs (8)
1233
var inputTuple = DnnRetrainTransformer.GetInputInfo(
_host
, tensorFlowModel.Session, options.InputColumns);
1235
_outputTypes = DnnRetrainTransformer.GetOutputInfo(
_host
, tensorFlowModel.Session, options.OutputColumns).outputTypes;
1254
_host
.CheckValue(inputSchema, nameof(inputSchema));
1261
throw
_host
.ExceptSchemaMismatch(nameof(inputSchema), "input", input);
1263
throw
_host
.ExceptSchemaMismatch(nameof(inputSchema), "input", input, "vector", col.GetTypeString());
1266
throw
_host
.ExceptSchemaMismatch(nameof(inputSchema), "input", input, expectedType.ToString(), col.ItemType.ToString());
1282
_host
.CheckValue(input, nameof(input));
1284
_transformer = new DnnRetrainTransformer(
_host
, _options, _tensorFlowModel, input);