1 write to _host
Microsoft.ML.Transforms (1)
StatefulFilterTransform.cs (1)
58
_host
= env.Register(RegistrationName);
15 references to _host
Microsoft.ML.Transforms (15)
StatefulFilterTransform.cs (15)
59
_host
.AssertValue(source, "source");
60
_host
.AssertValue(filterFunc, "filterFunc");
61
_host
.AssertValueOrNull(initStateAction);
62
_host
.AssertValueOrNull(inputSchemaDefinition);
63
_host
.AssertValueOrNull(outputSchemaDefinition);
69
_typedSource = TypedCursorable<TSrc>.Create(
_host
, Source, false, inputSchemaDefinition);
81
_host
.AssertValue(transform);
82
_host
.AssertValue(newSource);
85
_typedSource = TypedCursorable<TSrc>.Create(
_host
, newSource, false, transform._inputSchemaDefinition);
105
_host
.CheckValueOrNull(rand);
144
: base(parent.
_host
)
156
CursorChannelAttribute.TrySetCursorChannel(_parent.
_host
, _src, Ch);
157
CursorChannelAttribute.TrySetCursorChannel(_parent.
_host
, _dst, Ch);
158
CursorChannelAttribute.TrySetCursorChannel(_parent.
_host
, _state, Ch);
162
var appendedDataView = new DataViewConstructionUtils.SingleRowLoopDataView<TDst>(parent.
_host
, _parent._addedSchema);