8 overrides of MoveNext
Microsoft.Data.Analysis (1)
DataFrame.IDataView.cs (1)
132
public override bool
MoveNext
()
Microsoft.ML.Core (2)
Data\RootCursorBase.cs (1)
60
public sealed override bool
MoveNext
()
Data\SynchronizedCursorBase.cs (1)
68
public sealed override bool
MoveNext
() => Root.MoveNext();
Microsoft.ML.Data (4)
DataView\CacheDataView.cs (2)
468
public override bool
MoveNext
()
579
public override bool
MoveNext
() => throw Ch.ExceptNotSupp();
DataView\DataViewConstructionUtils.cs (1)
523
public override bool
MoveNext
() => _toWrap.MoveNext();
DataView\TypedCursor.cs (1)
625
public override bool
MoveNext
() => _cursor.MoveNext();
Microsoft.ML.Samples (1)
Dynamic\SimpleDataViewImplementation.cs (1)
311
public override bool
MoveNext
()
369 references to MoveNext
Microsoft.Data.Analysis (1)
IDataView.Extension.cs (1)
139
while (cursor.
MoveNext
() && cursor.Position < maxRows)
Microsoft.ML.AutoML (8)
AutoMLExperiment\ITrialResultManager.cs (1)
158
while (rowCursor.
MoveNext
())
ColumnInference\ColumnTypeInference.cs (1)
290
while (cursor.
MoveNext
())
ColumnInference\PurposeInference.cs (1)
94
while (cursor.
MoveNext
())
ColumnInference\TextFileContents.cs (1)
103
while (cursor.
MoveNext
())
DatasetDimensions\DatasetDimensionsUtil.cs (4)
20
while (cursor.
MoveNext
())
37
while (cursor.
MoveNext
())
55
while (cursor.
MoveNext
())
72
while (cursor.
MoveNext
())
Microsoft.ML.CodeGenerator (1)
Utils.cs (1)
66
if (rowCursor.
MoveNext
())
Microsoft.ML.Core (5)
Data\LinkedRootCursorBase.cs (2)
10
/// Base class for a cursor has an input cursor, but still needs to do work on <see cref="DataViewRowCursor.
MoveNext
"/>.
20
/// Returns the root cursor of the input. It should be used to perform <see cref="DataViewRowCursor.
MoveNext
"/>
Data\LinkedRowFilterCursorBase.cs (1)
29
while (Root.
MoveNext
())
Data\LinkedRowRootCursorBase.cs (1)
11
/// <see cref="DataViewRowCursor.
MoveNext
"/>. Note that the default
Data\SynchronizedCursorBase.cs (1)
68
public sealed override bool MoveNext() => Root.
MoveNext
();
Microsoft.ML.Core.Tests (98)
UnitTests\CoreBaseTestClass.cs (4)
278
bool f1 = curs1.
MoveNext
();
279
bool f2 = curs2.
MoveNext
();
361
bool f1 = curs1.
MoveNext
();
364
bool f2 = cursors[col].
MoveNext
();
UnitTests\TestEntryPoints.cs (94)
105
while (cursor.
MoveNext
())
492
while (curs1.
MoveNext
())
494
var move = curs2.
MoveNext
();
496
move = curs3.
MoveNext
();
498
move = curs4.
MoveNext
();
517
var moved = curs2.
MoveNext
();
519
moved = curs3.
MoveNext
();
521
moved = curs4.
MoveNext
();
1716
while (cursReg.
MoveNext
())
1720
Assert.True(curs0.
MoveNext
());
1721
Assert.True(curs1.
MoveNext
());
1722
Assert.True(curs2.
MoveNext
());
1723
Assert.True(curs3.
MoveNext
());
1724
Assert.True(curs4.
MoveNext
());
1725
Assert.True(cursBin.
MoveNext
());
1726
Assert.True(cursBinCali.
MoveNext
());
1727
Assert.True(cursSaved.
MoveNext
());
1728
Assert.True(cursAnom.
MoveNext
());
1752
Assert.False(curs0.
MoveNext
());
1753
Assert.False(curs1.
MoveNext
());
1754
Assert.False(curs2.
MoveNext
());
1755
Assert.False(curs3.
MoveNext
());
1756
Assert.False(curs4.
MoveNext
());
1757
Assert.False(cursBin.
MoveNext
());
1758
Assert.False(cursBinCali.
MoveNext
());
1759
Assert.False(cursSaved.
MoveNext
());
1760
Assert.False(cursAnom.
MoveNext
());
1939
while (cursReg.
MoveNext
())
1943
Assert.True(curs0.
MoveNext
());
1944
Assert.True(curs1.
MoveNext
());
1945
Assert.True(curs2.
MoveNext
());
1946
Assert.True(curs3.
MoveNext
());
1947
Assert.True(curs4.
MoveNext
());
1948
Assert.True(cursBin.
MoveNext
());
1949
Assert.True(cursBinCali.
MoveNext
());
1950
Assert.True(cursSaved.
MoveNext
());
1971
Assert.False(curs0.
MoveNext
());
1972
Assert.False(curs1.
MoveNext
());
1973
Assert.False(curs2.
MoveNext
());
1974
Assert.False(curs3.
MoveNext
());
1975
Assert.False(curs4.
MoveNext
());
1976
Assert.False(cursBin.
MoveNext
());
1977
Assert.False(cursBinCali.
MoveNext
());
1978
Assert.False(cursSaved.
MoveNext
());
2097
while (curs.
MoveNext
())
2100
Assert.True(curs0.
MoveNext
());
2101
Assert.True(curs1.
MoveNext
());
2102
Assert.True(curs2.
MoveNext
());
2103
Assert.True(curs3.
MoveNext
());
2104
Assert.True(curs4.
MoveNext
());
2105
Assert.True(cursSaved.
MoveNext
());
2116
Assert.False(curs0.
MoveNext
());
2117
Assert.False(curs1.
MoveNext
());
2118
Assert.False(curs2.
MoveNext
());
2119
Assert.False(curs3.
MoveNext
());
2120
Assert.False(curs4.
MoveNext
());
2121
Assert.False(cursSaved.
MoveNext
());
2544
while (cursor.
MoveNext
())
3620
Assert.True(cursor.
MoveNext
());
3725
Assert.True(cursor.
MoveNext
());
3891
Assert.True(cursor.
MoveNext
());
4083
Assert.True(cursor.
MoveNext
());
4428
while (cursor.
MoveNext
())
4498
while (curs.
MoveNext
())
4548
while (cursor.
MoveNext
())
5004
var b = cursor.
MoveNext
();
5009
b = cursor.
MoveNext
();
5192
b = cursor.
MoveNext
();
5204
b = cursor.
MoveNext
();
5223
b = cursor.
MoveNext
();
5239
b = cursor.
MoveNext
();
5368
var b = cursor.
MoveNext
();
5376
b = cursor.
MoveNext
();
5388
b = cursor.
MoveNext
();
5396
b = cursor.
MoveNext
();
5423
while (curs.
MoveNext
())
5440
Assert.False(cursor.
MoveNext
());
5591
var b = cursor.
MoveNext
();
5596
b = cursor.
MoveNext
();
5600
b = cursor.
MoveNext
();
5777
b = cursor.
MoveNext
();
5785
b = cursor.
MoveNext
();
5797
b = cursor.
MoveNext
();
5805
b = cursor.
MoveNext
();
6077
b = cursor.
MoveNext
();
6085
b = cursor.
MoveNext
();
6101
b = cursor.
MoveNext
();
6115
b = cursor.
MoveNext
();
6125
while (cursor.
MoveNext
())
6290
b = cursor.
MoveNext
();
6295
b = cursor.
MoveNext
();
6462
b = cursor.
MoveNext
();
6467
b = cursor.
MoveNext
();
6884
cursor.
MoveNext
();
Microsoft.ML.Data (73)
Commands\DataCommand.cs (1)
161
while (cursor.
MoveNext
())
Data\DataViewUtils.cs (6)
89
while (cursor.
MoveNext
())
417
if (localCursor.
MoveNext
() && !done)
426
while (localCursor.
MoveNext
() && !done)
581
while (input.
MoveNext
() && !done)
1207
if (cursor.
MoveNext
())
1272
if (Position >= 0 && _currentCursor.
MoveNext
())
DataDebuggerPreview.cs (1)
51
while (count < maxRows && cursor.
MoveNext
())
DataLoadSave\Binary\BinarySaver.cs (2)
599
while (cursor.
MoveNext
())
764
if (!cursor.
MoveNext
())
DataLoadSave\Text\TextSaver.cs (1)
598
while (cursor.
MoveNext
())
DataLoadSave\Transpose\TransposeLoader.cs (1)
703
return _rowCursor.
MoveNext
();
DataView\AppendRowsDataView.cs (2)
270
while (!_currentCursor.
MoveNext
())
373
bool r = _cursorSet[_currentSourceIndex].
MoveNext
();
DataView\BatchDataViewMapperBase.cs (3)
148
if (!_input.
MoveNext
())
158
var good = _lookAheadCursor.
MoveNext
();
167
} while (!_lastInBatchInLookAheadCursorDel() && _lookAheadCursor.
MoveNext
());
DataView\CacheDataView.cs (2)
399
while (cursor.
MoveNext
())
414
while (cursor.
MoveNext
())
DataView\Transposer.cs (2)
392
while (cursor.
MoveNext
())
638
while (cursor.
MoveNext
())
DataView\TypedCursor.cs (1)
644
public bool MoveNext() => _input.
MoveNext
();
DataView\ZipDataView.cs (1)
155
if (!cursor.
MoveNext
())
Evaluators\AnomalyDetectionEvaluator.cs (4)
608
var moved = cursor.
MoveNext
();
611
moved = cursor.
MoveNext
();
688
while (cursor.
MoveNext
())
737
while (cursor.
MoveNext
())
Evaluators\BinaryClassifierEvaluator.cs (10)
832
var moved = cursor.
MoveNext
();
835
moved = cursor.
MoveNext
();
887
while (cursor.
MoveNext
())
898
var moved = cursor.
MoveNext
();
901
moved = cursor.
MoveNext
();
959
var moved = cursor.
MoveNext
();
962
moved = cursor.
MoveNext
();
1013
while (cursor.
MoveNext
())
1023
var moved = cursor.
MoveNext
();
1026
moved = cursor.
MoveNext
();
Evaluators\ClusteringEvaluator.cs (2)
88
var moved = cursor.
MoveNext
();
91
moved = cursor.
MoveNext
();
Evaluators\EvaluatorBase.cs (1)
162
while (cursor.
MoveNext
())
Evaluators\EvaluatorUtils.cs (4)
320
while (cursor.
MoveNext
())
1139
while (cursor.
MoveNext
())
1490
while (cursor.
MoveNext
())
1743
while (cursor.
MoveNext
())
Evaluators\MulticlassClassificationEvaluator.cs (2)
570
var moved = cursor.
MoveNext
();
573
moved = cursor.
MoveNext
();
Evaluators\MultiOutputRegressionEvaluator.cs (1)
732
while (cursor.
MoveNext
())
Evaluators\RankingEvaluator.cs (2)
271
var moved = cursor.
MoveNext
();
274
moved = cursor.
MoveNext
();
Evaluators\RegressionEvaluator.cs (2)
190
var moved = cursor.
MoveNext
();
193
moved = cursor.
MoveNext
();
Prediction\Calibrator.cs (1)
974
while (cursor.
MoveNext
())
Prediction\PredictionEngine.cs (1)
36
while (cursor.
MoveNext
())
Training\TrainerUtils.cs (1)
549
if (!_cursor.
MoveNext
())
Transforms\BootstrapSamplingTransformer.cs (1)
237
while (_remaining == 0 && Input.
MoveNext
())
Transforms\Hashing.cs (1)
243
while (srcCursor.
MoveNext
())
Transforms\Normalizer.cs (1)
575
while (cursor.
MoveNext
())
Transforms\PerGroupTransformBase.cs (3)
325
if (!_input.
MoveNext
())
336
var good = _groupCursor.
MoveNext
() && _newGroupInGroupCursorDel();
349
_groupCursor.
MoveNext
();
Transforms\RowShufflingTransformer.cs (1)
587
if (!_input.
MoveNext
())
Transforms\SkipTakeFilter.cs (2)
278
if (!Root.
MoveNext
())
284
return Root.
MoveNext
();
Transforms\ValueMapping.cs (3)
490
while (cursor.
MoveNext
())
570
while (cursor.
MoveNext
())
883
while (cursor.
MoveNext
())
Transforms\ValueToKeyMappingTransformer.cs (2)
498
while (cursor.
MoveNext
() && trainer.ProcessRow())
617
while (tmin < trainer.Length && cursor.
MoveNext
())
Utilities\ColumnCursor.cs (4)
108
while (cursor.
MoveNext
())
126
while (cursor.
MoveNext
())
144
while (cursor.
MoveNext
())
166
while (cursor.
MoveNext
())
Utilities\ModelFileUtils.cs (1)
307
while (cursor.
MoveNext
())
Microsoft.ML.DataView (6)
IDataView.cs (6)
94
/// this will be before <see cref="DataViewRowCursor.
MoveNext
"/> if ever called for the first time, or after the first time
95
/// <see cref="DataViewRowCursor.
MoveNext
"/> is called and returns <see langword="false"/>.
188
/// incremented by <see cref="
MoveNext
"/>. Prior to the first call to <see cref="
MoveNext
"/>, or after
189
/// <see cref="
MoveNext
"/> returns <see langword="false"/>, <see cref="DataViewRow.Position"/> is <c>-1</c>.
190
/// Otherwise, when <see cref="
MoveNext
"/> returns <see langword="true"/>, <see cref="DataViewRow.Position"/> >= 0.
Microsoft.ML.Ensemble (1)
PipelineEnsemble.cs (1)
344
while (curs.
MoveNext
())
Microsoft.ML.Mkl.Components (2)
VectorWhitening.cs (2)
255
while (r < maxRows && cursor.
MoveNext
())
342
while (irow < maxActualRowCount && cursor.
MoveNext
())
Microsoft.ML.OnnxTransformerTest (11)
DnnImageFeaturizerTest.cs (2)
122
while (cursor.
MoveNext
())
169
while (cursor.
MoveNext
())
OnnxTransformTests.cs (9)
214
while (cursor.
MoveNext
())
277
while (cursor.
MoveNext
())
328
while (cursor.
MoveNext
())
378
while (curs.
MoveNext
())
449
while (curs.
MoveNext
())
489
while (curs.
MoveNext
())
512
while (curs.
MoveNext
())
705
while (curs.
MoveNext
())
758
while (curs.
MoveNext
())
Microsoft.ML.Parquet (1)
PartitionedFileLoader.cs (1)
456
while (_subCursor == null || !_subCursor.
MoveNext
())
Microsoft.ML.PCA (1)
PcaTransformer.cs (1)
430
while (cursor.
MoveNext
())
Microsoft.ML.PerformanceTests (3)
CacheDataViewBench.cs (2)
46
while (cursor.
MoveNext
())
78
while (_cursor.
MoveNext
())
TextLoaderBench.cs (1)
67
while (rowCursor.
MoveNext
())
Microsoft.ML.Predictor.Tests (6)
TestPredictors.cs (4)
728
while (curs.
MoveNext
())
735
Assert.True(cursors[i].
MoveNext
());
931
while (curs.
MoveNext
())
940
Assert.True(cursors[i].
MoveNext
());
TestTransposer.cs (2)
41
while (cursor.
MoveNext
())
55
while (cursor.
MoveNext
())
Microsoft.ML.Recommender (1)
SafeTrainingAndModelBuffer.cs (1)
273
while (cursor.
MoveNext
())
Microsoft.ML.Samples (8)
Dynamic\DataOperations\LoadingSvmLight.cs (1)
97
while (cursor.
MoveNext
())
Dynamic\DataOperations\LoadingText.cs (1)
190
while (cursor.
MoveNext
())
Dynamic\SimpleDataViewImplementation.cs (1)
58
while (cursor.
MoveNext
())
Dynamic\Transforms\ImageAnalytics\ConvertToGrayScale.cs (1)
88
while (cursor.
MoveNext
())
Dynamic\Transforms\ImageAnalytics\ConvertToImage.cs (1)
70
while (cursor.
MoveNext
())
Dynamic\Transforms\ImageAnalytics\ExtractPixels.cs (1)
100
while (cursor.
MoveNext
())
Dynamic\Transforms\ImageAnalytics\LoadImages.cs (1)
83
while (cursor.
MoveNext
())
Dynamic\Transforms\ImageAnalytics\ResizeImages.cs (1)
90
while (cursor.
MoveNext
())
Microsoft.ML.StandardTrainers (6)
FactorizationMachine\FactorizationMachineTrainer.cs (2)
383
while (cursor.
MoveNext
())
498
while (cursor.
MoveNext
())
LdSvm\LdSvmTrainer.cs (3)
575
while (cursor.
MoveNext
())
596
while (cursor.
MoveNext
())
648
while (cursor.
MoveNext
())
Standard\Simple\SimpleTrainers.cs (1)
274
while (cursor.
MoveNext
())
Microsoft.ML.TensorFlow.Tests (16)
TensorFlowEstimatorTests.cs (3)
177
while (cursor.
MoveNext
())
272
while (cursor.
MoveNext
())
308
while (cursor.
MoveNext
())
TensorflowTests.cs (13)
207
Assert.True(cursor.
MoveNext
());
217
Assert.True(cursor.
MoveNext
());
227
Assert.False(cursor.
MoveNext
());
312
Assert.True(cursor.
MoveNext
());
340
Assert.False(cursor.
MoveNext
());
446
Assert.True(cursor.
MoveNext
());
495
Assert.False(cursor.
MoveNext
());
523
while (curs.
MoveNext
())
568
while (curs.
MoveNext
())
744
if (cursor.
MoveNext
())
1042
while (cursor.
MoveNext
() && cursor2.
MoveNext
())
1088
while (cursor.
MoveNext
())
Microsoft.ML.TestFramework (22)
BaseTestBaseline.cs (2)
764
while (expectedCursor.
MoveNext
() && actualCursor.
MoveNext
())
DataPipe\TestDataPipe.cs (13)
231
while (c.
MoveNext
())
589
while (c.
MoveNext
())
631
while (c.
MoveNext
())
783
while (c.
MoveNext
())
927
while (c.
MoveNext
())
1123
Assert.True(cursor.
MoveNext
());
1154
Assert.True(cursor.
MoveNext
());
1217
while (cursor.
MoveNext
())
1515
while (cursor.
MoveNext
())
1562
Assert.True(cursor.
MoveNext
());
1564
Assert.True(cursor.
MoveNext
());
1566
Assert.True(cursor.
MoveNext
());
1568
Assert.False(cursor.
MoveNext
());
DataPipe\TestDataPipeBase.cs (5)
222
while (curs.
MoveNext
())
735
bool f1 = curs1.
MoveNext
();
736
bool f2 = curs2.
MoveNext
();
819
bool f1 = curs1.
MoveNext
();
822
bool f2 = cursors[col].
MoveNext
();
TestSparseDataView.cs (2)
57
while (cur.
MoveNext
())
97
while (cur.
MoveNext
())
Microsoft.ML.Tests (67)
ImagesTests.cs (12)
158
while (cursor.
MoveNext
())
205
while (cursor.
MoveNext
())
368
while (cursor.
MoveNext
())
443
while (cursor.
MoveNext
())
519
while (cursor.
MoveNext
())
594
while (cursor.
MoveNext
())
669
while (cursor.
MoveNext
())
745
while (cursor.
MoveNext
())
820
while (cursor.
MoveNext
())
896
while (cursor.
MoveNext
())
970
while (cursor.
MoveNext
())
1142
while (cursor.
MoveNext
())
Scenarios\Api\TestApi.cs (4)
78
filter1.GetRowCursorForAllColumns().
MoveNext
();
93
filter2.GetRowCursorForAllColumns().
MoveNext
();
116
filter3.GetRowCursorForAllColumns().
MoveNext
();
137
filter1.GetRowCursorForAllColumns().
MoveNext
();
SvmLightTests.cs (11)
243
while (curs.
MoveNext
())
263
while (curs.
MoveNext
())
282
while (curs.
MoveNext
())
330
while (curs.
MoveNext
())
356
while (curs.
MoveNext
())
375
while (curs.
MoveNext
())
394
while (curs.
MoveNext
())
425
curs.
MoveNext
();
427
curs.
MoveNext
();
429
Assert.False(curs.
MoveNext
());
436
Assert.False(curs.
MoveNext
());
TermEstimatorTests.cs (1)
170
while (cursor.
MoveNext
())
TextLoaderTests.cs (22)
52
Assert.True(cursor.
MoveNext
());
79
Assert.True(cursor.
MoveNext
());
81
Assert.False(cursor.
MoveNext
());
295
Assert.True(cursor.
MoveNext
());
305
Assert.True(cursor.
MoveNext
());
315
Assert.True(cursor.
MoveNext
());
325
Assert.False(cursor.
MoveNext
());
448
Assert.True(cursor.
MoveNext
());
458
Assert.True(cursor.
MoveNext
());
468
Assert.True(cursor.
MoveNext
());
478
Assert.False(cursor.
MoveNext
());
556
Assert.True(cursor.
MoveNext
());
566
Assert.True(cursor.
MoveNext
());
576
Assert.False(cursor.
MoveNext
());
917
while (cursorPeriod.
MoveNext
())
965
while (cursorComma.
MoveNext
())
1017
while (cursor.
MoveNext
())
1084
while (cursorPeriod.
MoveNext
() && cursorComma.
MoveNext
())
1328
while (curs.
MoveNext
())
1528
while (cursorBaseline.
MoveNext
() && cursorTest.
MoveNext
())
Transformers\CopyColumnEstimatorTests.cs (1)
179
while (cursor.
MoveNext
())
Transformers\CountTargetEncodingTests.cs (2)
142
while (curs.
MoveNext
())
144
Assert.True(curs1.
MoveNext
());
Transformers\TextFeaturizerTests.cs (3)
120
while (cursor.
MoveNext
())
162
while (cursor.
MoveNext
())
580
while (cursor.
MoveNext
())
Transformers\ValueMappingTests.cs (11)
74
cursor.
MoveNext
();
119
cursor.
MoveNext
();
154
cursor.
MoveNext
();
203
cursor.
MoveNext
();
244
cursor.
MoveNext
();
286
cursor.
MoveNext
();
326
cursor.
MoveNext
();
446
cursor.
MoveNext
();
487
cursor.
MoveNext
();
528
cursor.
MoveNext
();
566
cursor.
MoveNext
();
Microsoft.ML.TimeSeries (3)
AdaptiveSingularSpectrumSequenceModeler.cs (2)
1222
while (cursor.
MoveNext
() && count < _trainSize)
1566
while (cursor.
MoveNext
())
SeasonalityDetector.cs (1)
73
while (rowCursor.
MoveNext
())
Microsoft.ML.TorchSharp (6)
AutoFormerV2\ObjectDetectionMetrics.cs (2)
310
while (cursor.
MoveNext
())
353
while (cursor.
MoveNext
())
AutoFormerV2\ObjectDetectionTrainer.cs (1)
332
cursorValid = cursor.
MoveNext
();
Roberta\QATrainer.cs (1)
326
cursorValid = cursor.
MoveNext
();
TorchSharpBaseTrainer.cs (2)
239
cursorValid = cursor.
MoveNext
();
313
cursorValid = cursor.
MoveNext
();
Microsoft.ML.TorchSharp.Tests (4)
NerTests.cs (3)
95
while (cursor.
MoveNext
())
174
while (cursor.
MoveNext
())
247
while (cursor.
MoveNext
())
QATests.cs (1)
107
while (cursor.
MoveNext
())
Microsoft.ML.Transforms (17)
CountFeatureSelection.cs (1)
338
while (cursor.
MoveNext
())
Dracula\CountTableTransformer.cs (1)
199
while (cursor.
MoveNext
())
GroupTransform.cs (3)
579
if (_leadingCursor.Position < 0 && !_leadingCursor.
MoveNext
())
589
if (!_leadingCursor.
MoveNext
())
604
var res = _trailingCursor.
MoveNext
();
MissingValueReplacing.cs (1)
346
while (cursor.
MoveNext
())
PermutationFeatureImportance.cs (1)
148
while (initialfeatureValuesList.Count < maxSize && cursor.
MoveNext
())
RandomFourierFeaturizing.cs (1)
322
while (cursor.
MoveNext
())
StatefulFilterTransform.cs (1)
197
if (!_input.
MoveNext
())
SvmLight\SvmLightLoader.cs (1)
688
while (cursor.
MoveNext
())
SvmLight\SvmLightSaver.cs (1)
137
while (cursor.
MoveNext
())
Text\LdaTransform.cs (2)
874
while (cursor.
MoveNext
())
954
while (cursor.
MoveNext
())
Text\NgramHashingTransformer.cs (1)
243
while (rowCursor.
MoveNext
())
Text\NgramTransform.cs (1)
270
while (cInfoFull < columns.Length && cursor.
MoveNext
())
Text\StopWordsRemovingTransformer.cs (1)
878
while (cursor.
MoveNext
())
UngroupTransform.cs (1)
538
bool result = Input.
MoveNext
();
Microsoft.ML.Vision (2)
DnnRetrainTransform.cs (1)
344
while (cursor.
MoveNext
())
ImageClassificationTrainer.cs (1)
826
while (cursor.
MoveNext
())