2 instantiations of Cursor
Microsoft.ML.Data (2)
Transforms\NAFilter.cs (2)
216
return new
Cursor
(this, input, active);
233
cursors[i] = new
Cursor
(this, inputs[i], active);
13 references to Cursor
Microsoft.ML.Data (13)
Transforms\NAFilter.cs (13)
253
private static readonly FuncStaticMethodInfo1<
Cursor
, ColInfo, Value> _createOneMethodInfo
254
= new FuncStaticMethodInfo1<
Cursor
, ColInfo, Value>(CreateOne<int>);
256
private static readonly FuncStaticMethodInfo1<
Cursor
, ColInfo, Value> _createVecMethodInfo
257
= new FuncStaticMethodInfo1<
Cursor
, ColInfo, Value>(CreateVec<int>);
259
protected readonly
Cursor
Cursor;
261
protected Value(
Cursor
cursor)
271
public static Value Create(
Cursor
cursor, ColInfo info)
276
FuncStaticMethodInfo1<
Cursor
, ColInfo, Value> method;
292
private static ValueOne<T> CreateOne<T>(
Cursor
cursor, ColInfo info)
304
private static ValueVec<T> CreateVec<T>(
Cursor
cursor, ColInfo info)
322
protected TypedValue(
Cursor
cursor, ValueGetter<T> getSrc, InPredicate<T> hasBad)
342
public ValueOne(
Cursor
cursor, ValueGetter<T> getSrc, InPredicate<T> hasBad)
364
public ValueVec(
Cursor
cursor, ValueGetter<VBuffer<T>> getSrc, InPredicate<VBuffer<T>> hasBad)