142 references to EntryPointUtils
Microsoft.ML.Core.Tests (15)
UnitTests\TestEntryPoints.cs (15)
389
Assert.True(
EntryPointUtils
.IsValueWithinRange(range, 5.1));
390
Assert.True(
EntryPointUtils
.IsValueWithinRange(range, 5.0));
391
Assert.False(
EntryPointUtils
.IsValueWithinRange(range, 4.9));
394
Assert.True(
EntryPointUtils
.IsValueWithinRange(range, 5.1));
395
Assert.False(
EntryPointUtils
.IsValueWithinRange(range, 5.0));
396
Assert.False(
EntryPointUtils
.IsValueWithinRange(range, 4.9));
399
Assert.False(
EntryPointUtils
.IsValueWithinRange(range, 5.1));
400
Assert.True(
EntryPointUtils
.IsValueWithinRange(range, 5.0));
401
Assert.True(
EntryPointUtils
.IsValueWithinRange(range, 4.9));
404
Assert.False(
EntryPointUtils
.IsValueWithinRange(range, 5.1));
405
Assert.False(
EntryPointUtils
.IsValueWithinRange(range, 5.0));
406
Assert.True(
EntryPointUtils
.IsValueWithinRange(range, 4.9));
409
Assert.False(
EntryPointUtils
.IsValueWithinRange(range, -1.1));
410
Assert.False(
EntryPointUtils
.IsValueWithinRange(range, 1.1));
411
Assert.True(
EntryPointUtils
.IsValueWithinRange(range, 0.0));
Microsoft.ML.Data (31)
EntryPoints\SchemaManipulation.cs (3)
23
EntryPointUtils
.CheckInputArgs(host, input);
35
EntryPointUtils
.CheckInputArgs(host, input);
47
EntryPointUtils
.CheckInputArgs(host, input);
EntryPoints\SelectRows.cs (4)
24
EntryPointUtils
.CheckInputArgs(host, input);
37
EntryPointUtils
.CheckInputArgs(host, input);
49
EntryPointUtils
.CheckInputArgs(host, input);
61
EntryPointUtils
.CheckInputArgs(host, input);
EntryPoints\SummarizePredictor.cs (1)
37
EntryPointUtils
.CheckInputArgs(host, input);
Evaluators\AnomalyDetectionEvaluator.cs (1)
819
EntryPointUtils
.CheckInputArgs(host, input);
Evaluators\BinaryClassifierEvaluator.cs (1)
1508
EntryPointUtils
.CheckInputArgs(host, input);
Evaluators\ClusteringEvaluator.cs (1)
863
EntryPointUtils
.CheckInputArgs(host, input);
Evaluators\MulticlassClassificationEvaluator.cs (1)
1096
EntryPointUtils
.CheckInputArgs(host, input);
Evaluators\MultiOutputRegressionEvaluator.cs (1)
779
EntryPointUtils
.CheckInputArgs(host, input);
Evaluators\QuantileRegressionEvaluator.cs (1)
564
EntryPointUtils
.CheckInputArgs(host, input);
Evaluators\RankingEvaluator.cs (1)
1086
EntryPointUtils
.CheckInputArgs(host, input);
Evaluators\RegressionEvaluator.cs (1)
391
EntryPointUtils
.CheckInputArgs(host, input);
Prediction\Calibrator.cs (4)
2157
EntryPointUtils
.CheckInputArgs(host, input);
2168
EntryPointUtils
.CheckInputArgs(host, input);
2179
EntryPointUtils
.CheckInputArgs(host, input);
2190
EntryPointUtils
.CheckInputArgs(host, input);
Transforms\BootstrapSamplingTransformer.cs (1)
259
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "BootstrapSample", input);
Transforms\FeatureContributionCalculationTransformer.cs (1)
372
EntryPointUtils
.CheckInputArgs(host, options);
Transforms\GenerateNumberTransform.cs (1)
488
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "GenerateNumber", input);
Transforms\LabelIndicatorTransform.cs (1)
236
EntryPointUtils
.CheckInputArgs(host, input);
Transforms\NopTransform.cs (1)
150
EntryPointUtils
.CheckInputArgs(host, input);
Transforms\NormalizeUtils.cs (5)
85
EntryPointUtils
.CheckInputArgs(host, input);
97
EntryPointUtils
.CheckInputArgs(host, input);
109
EntryPointUtils
.CheckInputArgs(host, input);
121
EntryPointUtils
.CheckInputArgs(host, input);
133
EntryPointUtils
.CheckInputArgs(host, input);
Transforms\TypeConverting.cs (1)
42
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "Convert", input);
Microsoft.ML.Ensemble (4)
EntryPoints\Ensemble.cs (3)
22
EntryPointUtils
.CheckInputArgs(host, input);
35
EntryPointUtils
.CheckInputArgs(host, input);
48
EntryPointUtils
.CheckInputArgs(host, input);
EntryPoints\PipelineEnsemble.cs (1)
32
EntryPointUtils
.CheckInputArgs(host, input);
Microsoft.ML.EntryPoints (19)
CVSplit.cs (1)
53
EntryPointUtils
.CheckInputArgs(host, input);
DataViewReference.cs (1)
34
EntryPointUtils
.CheckInputArgs(host, input);
FeatureCombiner.cs (4)
51
EntryPointUtils
.CheckInputArgs(host, input);
233
EntryPointUtils
.CheckInputArgs(host, input);
269
EntryPointUtils
.CheckInputArgs(host, input);
291
EntryPointUtils
.CheckInputArgs(host, input);
ImportTextData.cs (2)
41
EntryPointUtils
.CheckInputArgs(host, input);
61
EntryPointUtils
.CheckInputArgs(host, input);
ModelOperations.cs (4)
89
EntryPointUtils
.CheckInputArgs(host, input);
105
EntryPointUtils
.CheckInputArgs(host, input);
120
EntryPointUtils
.CheckInputArgs(host, input);
137
EntryPointUtils
.CheckInputArgs(host, input);
PermutationFeatureImportance.cs (1)
27
EntryPointUtils
.CheckInputArgs(host, input);
ScoreColumnSelector.cs (2)
28
EntryPointUtils
.CheckInputArgs(env, input);
71
EntryPointUtils
.CheckInputArgs(host, input);
ScoreModel.cs (3)
73
EntryPointUtils
.CheckInputArgs(host, input);
105
EntryPointUtils
.CheckInputArgs(host, input);
121
EntryPointUtils
.CheckInputArgs(host, input);
TrainTestSplit.cs (1)
50
EntryPointUtils
.CheckInputArgs(host, input);
Microsoft.ML.FastTree (9)
FastTreeClassification.cs (1)
439
EntryPointUtils
.CheckInputArgs(host, input);
FastTreeRanking.cs (1)
1088
EntryPointUtils
.CheckInputArgs(host, input);
FastTreeRegression.cs (1)
539
EntryPointUtils
.CheckInputArgs(host, input);
FastTreeTweedie.cs (1)
575
EntryPointUtils
.CheckInputArgs(host, input);
GamTrainer.cs (2)
691
EntryPointUtils
.CheckInputArgs(host, input);
705
EntryPointUtils
.CheckInputArgs(host, input);
RandomForestClassification.cs (1)
415
EntryPointUtils
.CheckInputArgs(host, input);
RandomForestRegression.cs (1)
600
EntryPointUtils
.CheckInputArgs(host, input);
TreeEnsembleFeaturizer.cs (1)
828
EntryPointUtils
.CheckInputArgs(host, input);
Microsoft.ML.ImageAnalytics (5)
EntryPoints\ImageAnalytics.cs (5)
20
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "ImageLoaderTransform", input);
33
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "ImageResizerTransform", input);
46
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "ImagePixelExtractorTransform", input);
59
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "ImageGrayscaleTransform", input);
72
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "VectorToImageTransform", input);
Microsoft.ML.KMeansClustering (1)
KMeansPlusPlusTrainer.cs (1)
296
EntryPointUtils
.CheckInputArgs(host, input);
Microsoft.ML.LightGbm (4)
LightGbmBinaryTrainer.cs (1)
319
EntryPointUtils
.CheckInputArgs(host, input);
LightGbmMulticlassTrainer.cs (1)
401
EntryPointUtils
.CheckInputArgs(host, input);
LightGbmRankingTrainer.cs (1)
331
EntryPointUtils
.CheckInputArgs(host, input);
LightGbmRegressionTrainer.cs (1)
279
EntryPointUtils
.CheckInputArgs(host, input);
Microsoft.ML.Mkl.Components (2)
OlsLinearRegression.cs (1)
680
EntryPointUtils
.CheckInputArgs(host, options);
SymSgdClassificationTrainer.cs (1)
291
EntryPointUtils
.CheckInputArgs(host, options);
Microsoft.ML.PCA (2)
PcaTrainer.cs (1)
402
EntryPointUtils
.CheckInputArgs(host, input);
PcaTransformer.cs (1)
684
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "Pca", input);
Microsoft.ML.StandardTrainers (13)
FactorizationMachine\FactorizationMachineTrainer.cs (1)
579
EntryPointUtils
.CheckInputArgs(host, input);
LdSvm\LdSvmTrainer.cs (1)
674
EntryPointUtils
.CheckInputArgs(host, input);
Standard\LogisticRegression\LogisticRegression.cs (1)
471
EntryPointUtils
.CheckInputArgs(host, input);
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
402
EntryPointUtils
.CheckInputArgs(host, input);
Standard\MulticlassClassification\MulticlassNaiveBayesTrainer.cs (1)
213
EntryPointUtils
.CheckInputArgs(host, input);
Standard\Online\AveragedPerceptron.cs (1)
229
EntryPointUtils
.CheckInputArgs(host, input);
Standard\Online\LinearSvm.cs (1)
329
EntryPointUtils
.CheckInputArgs(host, input);
Standard\Online\OnlineGradientDescent.cs (1)
195
EntryPointUtils
.CheckInputArgs(host, input);
Standard\PoissonRegression\PoissonRegression.cs (1)
217
EntryPointUtils
.CheckInputArgs(host, input);
Standard\SdcaBinary.cs (2)
2472
EntryPointUtils
.CheckInputArgs(host, input);
2496
EntryPointUtils
.CheckInputArgs(host, input);
Standard\SdcaMulticlass.cs (1)
680
EntryPointUtils
.CheckInputArgs(host, input);
Standard\SdcaRegression.cs (1)
219
EntryPointUtils
.CheckInputArgs(host, input);
Microsoft.ML.TensorFlow (1)
TensorflowTransform.cs (1)
802
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "TensorFlow", input);
Microsoft.ML.TimeSeries (9)
TimeSeriesProcessing.cs (9)
21
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "ExponentialAverageTransform", input);
35
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "IidChangePointDetector", options);
49
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "IidSpikeDetector", options);
63
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "PercentileThresholdTransform", input);
77
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "PValueTransform", input);
91
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "SlidingWindowTransform", input);
105
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "SsaChangePointDetector", options);
119
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "SsaSpikeDetector", options);
133
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "SsaForecasting", options);
Microsoft.ML.Transforms (27)
Dracula\CountTableTransformer.cs (1)
743
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "CountTable", input);
Dracula\CountTargetEncodingTransformer.cs (1)
547
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, nameof(CountTargetEncoder), input);
EntryPoints\SelectFeatures.cs (2)
24
EntryPointUtils
.CheckInputArgs(host, input);
39
EntryPointUtils
.CheckInputArgs(host, input);
EntryPoints\TextAnalytics.cs (8)
26
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "FeaturizeTextEstimator", input);
41
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "DelimitedTokenizeTransform", input);
56
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "NGramTransform", input);
71
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "TermTransform", input);
86
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "SentimentAnalyzer", input);
104
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "CharTokenize", input);
122
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "LightLda", input);
143
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "WordEmbeddings", input);
GcnTransform.cs (2)
741
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "LpNormalize", input);
756
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "GcNormalize", input);
GroupTransform.cs (1)
677
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "GroupTransform", input);
HashJoiningTransform.cs (1)
671
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "HashJoin", input);
NAHandling.cs (5)
24
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, MissingValueDroppingTransformer.ShortName, input);
39
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, NAFilter.ShortName, input);
54
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "NAHandle", input);
69
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "NAIndicator", input);
84
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "NAReplace", input);
OneHotEncoding.cs (4)
358
EntryPointUtils
.CheckInputArgs(host, input);
372
EntryPointUtils
.CheckInputArgs(host, input);
386
EntryPointUtils
.CheckInputArgs(host, input);
400
EntryPointUtils
.CheckInputArgs(host, input);
OptionalColumnTransform.cs (1)
589
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "OptionalColumn", input);
UngroupTransform.cs (1)
686
var h =
EntryPointUtils
.CheckArgsAndCreateHost(env, "UngroupTransform", input);