gitextract_xuath7jb/ ├── .CodeQL.yml ├── .azuredevops/ │ └── dependabot.yml ├── .config/ │ ├── 1espt/ │ │ └── PipelineAutobaseliningConfig.yml │ └── tsaoptions.json ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── report-a-bug.md │ │ └── suggest-a-feature.md │ ├── aw/ │ │ └── actions-lock.json │ ├── copilot-instructions.md │ ├── dependabot.yml │ ├── health-baseline.md │ ├── policies/ │ │ ├── resourceManagement.yml │ │ └── untriaged.yml │ ├── prompts/ │ │ └── release-notes.prompt.md │ └── workflows/ │ ├── backport.yml │ ├── copilot-setup-steps.yml │ ├── find-similar-issues.yml │ ├── inclusive-heat-sensor.yml │ ├── issue-triage.agent.lock.yml │ ├── issue-triage.agent.md │ ├── locker.yml │ ├── repo-health-check.lock.yml │ ├── repo-health-check.md │ ├── repo-health-groom.lock.yml │ ├── repo-health-groom.md │ ├── repo-health-investigate.lock.yml │ └── repo-health-investigate.md ├── .gitignore ├── .gitmodules ├── .vsts-dotnet-ci.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── ISSUE_TEMPLATE.md ├── LICENSE ├── Microsoft.ML.sln ├── NuGet.config ├── PULL_REQUEST_TEMPLATE.md ├── README-oneDAL.md ├── README.ko-KR.md ├── README.md ├── ROADMAP.md ├── SECURITY.md ├── THIRD-PARTY-NOTICES.TXT ├── build/ │ ├── .night-build.yml │ ├── .outer-loop-build.yml │ ├── Codecoverage.proj │ ├── ci/ │ │ ├── job-template.yml │ │ └── send-to-helix.yml │ ├── codecoverage-ci.yml │ ├── libomp.rb │ └── vsts-ci.yml ├── build.cmd ├── build.sh ├── cgmanifest.json ├── codecov.yml ├── dir.traversal.targets ├── docs/ │ ├── README.md │ ├── api-reference/ │ │ ├── algo-details-fastforest.md │ │ ├── algo-details-fasttree.md │ │ ├── algo-details-gam.md │ │ ├── algo-details-lightgbm.md │ │ ├── algo-details-sdca-refs.md │ │ ├── algo-details-sdca.md │ │ ├── algo-details-sgd.md │ │ ├── expression-estimator.md │ │ ├── io-columns-anomaly-detection.md │ │ ├── io-columns-binary-classification-no-prob.md │ │ ├── io-columns-binary-classification.md │ │ ├── io-columns-clustering.md │ │ ├── io-columns-multiclass-classification.md │ │ ├── io-columns-ranking.md │ │ ├── io-columns-regression.md │ │ ├── io-columns-tree-featurization-binary-classification.md │ │ ├── io-columns-tree-featurization-ranking.md │ │ ├── io-columns-tree-featurization-regression.md │ │ ├── io-time-series-change-point.md │ │ ├── io-time-series-spike.md │ │ ├── io-time-series-ssa-forecast.md │ │ ├── regularization-l1-l2.md │ │ ├── tensorflow-usage.md │ │ ├── time-series-iid.md │ │ ├── time-series-props.md │ │ ├── time-series-pvalue.md │ │ ├── time-series-root-cause-localization.md │ │ ├── time-series-root-cause-surprise-score.md │ │ ├── time-series-scorer.md │ │ ├── time-series-ssa.md │ │ └── tree-featurization-prediction.md │ ├── building/ │ │ ├── MlNetMklDeps/ │ │ │ ├── MlNetMklDeps.nuspec │ │ │ ├── README.md │ │ │ ├── mlnetmkl.list │ │ │ └── version.md │ │ ├── unix-instructions.md │ │ └── windows-instructions.md │ ├── code/ │ │ ├── DataViewRowCursor.md │ │ ├── DeepLearningOverview.md │ │ ├── EntryPoints.md │ │ ├── GraphRunner.md │ │ ├── IDataViewDesignPrinciples.md │ │ ├── IDataViewImplementation.md │ │ ├── IDataViewTypeSystem.md │ │ ├── IdvFileFormat.md │ │ ├── KeyValues.md │ │ ├── MlNetCookBook.md │ │ ├── MlNetHighLevelConcepts.md │ │ ├── SchemaComprehension.md │ │ ├── VBufferCareFeeding.md │ │ └── microsoft-ml-tokenizers-migration-guide.md │ ├── gen-ai/ │ │ ├── Benchmark && Evaluation.md │ │ ├── CausalLMPipeline.md │ │ ├── CausalLanguageModel.md │ │ ├── DynamicLoading.md │ │ ├── DynamicLoadingReport.md │ │ ├── Package Structure.md │ │ ├── README.md │ │ ├── Tokenizer.md │ │ └── Usage.md │ ├── project-docs/ │ │ ├── components-and-dependencies.md │ │ ├── contributing.md │ │ ├── developer-guide.md │ │ ├── platform-limitations.md │ │ └── release-process.md │ ├── release-notes/ │ │ ├── 0.1/ │ │ │ └── release-0.1.md │ │ ├── 0.10/ │ │ │ └── release-0.10.md │ │ ├── 0.11/ │ │ │ └── release-0.11.md │ │ ├── 0.2/ │ │ │ └── release-0.2.md │ │ ├── 0.3/ │ │ │ └── release-0.3.md │ │ ├── 0.4/ │ │ │ └── release-0.4.md │ │ ├── 0.5/ │ │ │ └── release-0.5.md │ │ ├── 0.6/ │ │ │ └── release-0.6.md │ │ ├── 0.7/ │ │ │ └── release-0.7.md │ │ ├── 0.8/ │ │ │ └── release-0.8.md │ │ ├── 0.9/ │ │ │ └── release-0.9.md │ │ ├── 1.0.0/ │ │ │ └── release-1.0.0.md │ │ ├── 1.0.0-preview/ │ │ │ └── release-1.0.0-preview.md │ │ ├── 1.1.0/ │ │ │ └── release-1.1.0.md │ │ ├── 1.2.0/ │ │ │ └── release-1.2.0.md │ │ ├── 1.3.1/ │ │ │ └── release-1.3.1.md │ │ ├── 1.4.0/ │ │ │ └── release-1.4.0.md │ │ ├── 1.4.0-preview/ │ │ │ └── release-1.4.0-preview.md │ │ ├── 1.4.0-preview2/ │ │ │ └── release-1.4.0-preview2.md │ │ ├── 1.5.0/ │ │ │ └── release-1.5.0.md │ │ ├── 1.5.0-preview/ │ │ │ └── release-1.5.0-preview.md │ │ ├── 1.5.0-preview2/ │ │ │ └── release-1.5.0-preview2.md │ │ ├── 1.5.2/ │ │ │ └── release-1.5.2.md │ │ ├── 1.5.4/ │ │ │ └── release-1.5.4.md │ │ ├── 1.5.5/ │ │ │ └── release-1.5.5.md │ │ ├── 1.6.0/ │ │ │ └── release-1.6.0.md │ │ ├── 1.7.0/ │ │ │ └── release-1.7.0.md │ │ ├── 2.0/ │ │ │ └── release-2.0.0.md │ │ ├── 3.0/ │ │ │ └── release-3.0.0.md │ │ ├── 3.0-preview/ │ │ │ └── release-3.0.0-preview.md │ │ ├── 3.0.1/ │ │ │ └── release-3.0.1.md │ │ ├── 4.0/ │ │ │ └── release-4.0.md │ │ ├── 4.0-preview1/ │ │ │ └── release-4.0-preview1.md │ │ ├── 4.0.2/ │ │ │ └── release-4.0.2.md │ │ ├── 4.0.3/ │ │ │ └── release-4.0.3.md │ │ ├── 5.0-preview.1/ │ │ │ └── release-5.0-preview.1.md │ │ └── 5.0.0/ │ │ └── release-5.0.0.md │ ├── samples/ │ │ ├── Microsoft.ML.AutoML.Samples/ │ │ │ ├── AutoFit/ │ │ │ │ ├── BinaryClassificationExperiment.cs │ │ │ │ ├── MulticlassClassificationExperiment.cs │ │ │ │ ├── RankingExperiment.cs │ │ │ │ ├── RecommendationExperiment.cs │ │ │ │ └── RegressionExperiment.cs │ │ │ ├── AutoMLExperiment.cs │ │ │ ├── Cifar10.cs │ │ │ ├── DataStructures/ │ │ │ │ ├── Movie.cs │ │ │ │ ├── MovieRatingPrediction.cs │ │ │ │ ├── PixelData.cs │ │ │ │ ├── PixelPrediction.cs │ │ │ │ ├── SearchData.cs │ │ │ │ ├── SearchDataPrediction.cs │ │ │ │ ├── SentimentIssue.cs │ │ │ │ ├── SentimentPrediction.cs │ │ │ │ ├── TaxiTrip.cs │ │ │ │ └── TaxiTripFarePrediction.cs │ │ │ ├── Microsoft.ML.AutoML.Samples.csproj │ │ │ ├── Program.cs │ │ │ └── Sweepable/ │ │ │ ├── ParameterExample.cs │ │ │ ├── SearchSpaceExample.cs │ │ │ └── SweepableLightGBMBinaryExperiment.cs │ │ ├── Microsoft.ML.GenAI.Samples/ │ │ │ ├── Llama/ │ │ │ │ ├── LlamaSample.cs │ │ │ │ └── SFT_Llama_3_2_1B.cs │ │ │ ├── MEAI/ │ │ │ │ ├── Llama3_1.cs │ │ │ │ └── Phi3.cs │ │ │ ├── Microsoft.ML.GenAI.Samples.csproj │ │ │ ├── Mistral/ │ │ │ │ └── Mistral_7B_Instruct.cs │ │ │ ├── Phi3Mini/ │ │ │ │ ├── AutoGenSample.cs │ │ │ │ └── SemanticKernelSample.cs │ │ │ └── Program.cs │ │ ├── Microsoft.ML.Samples/ │ │ │ ├── Dynamic/ │ │ │ │ ├── DataOperations/ │ │ │ │ │ ├── BootstrapSample.cs │ │ │ │ │ ├── Cache.cs │ │ │ │ │ ├── CrossValidationSplit.cs │ │ │ │ │ ├── DataViewEnumerable.cs │ │ │ │ │ ├── DataViewEnumerable.tt │ │ │ │ │ ├── FilterRowsByColumn.cs │ │ │ │ │ ├── FilterRowsByColumn.tt │ │ │ │ │ ├── FilterRowsByCustomPredicate.cs │ │ │ │ │ ├── FilterRowsByKeyColumnFraction.cs │ │ │ │ │ ├── FilterRowsByMissingValues.cs │ │ │ │ │ ├── FilterRowsByStatefulCustomPredicate.cs │ │ │ │ │ ├── LoadFromEnumerable.cs │ │ │ │ │ ├── LoadingSvmLight.cs │ │ │ │ │ ├── LoadingText.cs │ │ │ │ │ ├── SaveAndLoadFromBinary.cs │ │ │ │ │ ├── SaveAndLoadFromText.cs │ │ │ │ │ ├── ShuffleRows.cs │ │ │ │ │ ├── ShuffleRows.tt │ │ │ │ │ ├── SkipRows.cs │ │ │ │ │ ├── SkipRows.tt │ │ │ │ │ ├── TakeRows.cs │ │ │ │ │ ├── TakeRows.tt │ │ │ │ │ ├── TemperatureAndLatitude.ttinclude │ │ │ │ │ └── TrainTestSplit.cs │ │ │ │ ├── ModelOperations/ │ │ │ │ │ ├── OnnxConversion.cs │ │ │ │ │ ├── SaveLoadModel.cs │ │ │ │ │ └── SaveLoadModelFile.cs │ │ │ │ ├── NgramExtraction.cs │ │ │ │ ├── SimpleDataViewImplementation.cs │ │ │ │ ├── TensorFlow/ │ │ │ │ │ ├── ImageClassification.cs │ │ │ │ │ └── TextClassification.cs │ │ │ │ ├── TextTransform.cs │ │ │ │ ├── Trainers/ │ │ │ │ │ ├── AnomalyDetection/ │ │ │ │ │ │ ├── RandomizedPcaSample.cs │ │ │ │ │ │ └── RandomizedPcaSampleWithOptions.cs │ │ │ │ │ ├── BinaryClassification/ │ │ │ │ │ │ ├── AveragedPerceptron.cs │ │ │ │ │ │ ├── AveragedPerceptron.tt │ │ │ │ │ │ ├── AveragedPerceptronWithOptions.cs │ │ │ │ │ │ ├── AveragedPerceptronWithOptions.tt │ │ │ │ │ │ ├── BinaryClassification.ttinclude │ │ │ │ │ │ ├── Calibrators/ │ │ │ │ │ │ │ ├── FixedPlatt.cs │ │ │ │ │ │ │ ├── Isotonic.cs │ │ │ │ │ │ │ ├── Naive.cs │ │ │ │ │ │ │ └── Platt.cs │ │ │ │ │ │ ├── FactorizationMachine.cs │ │ │ │ │ │ ├── FactorizationMachine.tt │ │ │ │ │ │ ├── FastForest.cs │ │ │ │ │ │ ├── FastForest.tt │ │ │ │ │ │ ├── FastForestWithOptions.cs │ │ │ │ │ │ ├── FastForestWithOptions.tt │ │ │ │ │ │ ├── FastTree.cs │ │ │ │ │ │ ├── FastTree.tt │ │ │ │ │ │ ├── FastTreeWithOptions.cs │ │ │ │ │ │ ├── FastTreeWithOptions.tt │ │ │ │ │ │ ├── FieldAwareFactorizationMachine.cs │ │ │ │ │ │ ├── FieldAwareFactorizationMachine.tt │ │ │ │ │ │ ├── FieldAwareFactorizationMachineWithOptions.cs │ │ │ │ │ │ ├── FieldAwareFactorizationMachineWithOptions.tt │ │ │ │ │ │ ├── Gam.cs │ │ │ │ │ │ ├── GamWithOptions.cs │ │ │ │ │ │ ├── LbfgsLogisticRegression.cs │ │ │ │ │ │ ├── LbfgsLogisticRegression.tt │ │ │ │ │ │ ├── LbfgsLogisticRegressionWithOptions.cs │ │ │ │ │ │ ├── LbfgsLogisticRegressionWithOptions.tt │ │ │ │ │ │ ├── LdSvm.cs │ │ │ │ │ │ ├── LdSvm.tt │ │ │ │ │ │ ├── LdSvmWithOptions.cs │ │ │ │ │ │ ├── LdSvmWithOptions.tt │ │ │ │ │ │ ├── LightGbm.cs │ │ │ │ │ │ ├── LightGbm.tt │ │ │ │ │ │ ├── LightGbmWithOptions.cs │ │ │ │ │ │ ├── LightGbmWithOptions.tt │ │ │ │ │ │ ├── LinearSvm.cs │ │ │ │ │ │ ├── LinearSvm.tt │ │ │ │ │ │ ├── LinearSvmWithOptions.cs │ │ │ │ │ │ ├── LinearSvmWithOptions.tt │ │ │ │ │ │ ├── MultipleFeatureColumnsBinaryClassification.ttinclude │ │ │ │ │ │ ├── PermutationFeatureImportance.cs │ │ │ │ │ │ ├── PermutationFeatureImportanceLoadFromDisk.cs │ │ │ │ │ │ ├── PriorTrainer.cs │ │ │ │ │ │ ├── PriorTrainer.tt │ │ │ │ │ │ ├── SdcaLogisticRegression.cs │ │ │ │ │ │ ├── SdcaLogisticRegression.tt │ │ │ │ │ │ ├── SdcaLogisticRegressionWithOptions.cs │ │ │ │ │ │ ├── SdcaLogisticRegressionWithOptions.tt │ │ │ │ │ │ ├── SdcaNonCalibrated.cs │ │ │ │ │ │ ├── SdcaNonCalibrated.tt │ │ │ │ │ │ ├── SdcaNonCalibratedWithOptions.cs │ │ │ │ │ │ ├── SdcaNonCalibratedWithOptions.tt │ │ │ │ │ │ ├── SgdCalibrated.cs │ │ │ │ │ │ ├── SgdCalibrated.tt │ │ │ │ │ │ ├── SgdCalibratedWithOptions.cs │ │ │ │ │ │ ├── SgdCalibratedWithOptions.tt │ │ │ │ │ │ ├── SgdNonCalibrated.cs │ │ │ │ │ │ ├── SgdNonCalibrated.tt │ │ │ │ │ │ ├── SgdNonCalibratedWithOptions.cs │ │ │ │ │ │ ├── SgdNonCalibratedWithOptions.tt │ │ │ │ │ │ ├── SymbolicSgdLogisticRegression.cs │ │ │ │ │ │ ├── SymbolicSgdLogisticRegression.tt │ │ │ │ │ │ ├── SymbolicSgdLogisticRegressionWithOptions.cs │ │ │ │ │ │ ├── SymbolicSgdLogisticRegressionWithOptions.tt │ │ │ │ │ │ └── TreeSamplesTemplate.ttinclude │ │ │ │ │ ├── Clustering/ │ │ │ │ │ │ ├── Clustering.ttinclude │ │ │ │ │ │ ├── KMeans.cs │ │ │ │ │ │ ├── KMeans.tt │ │ │ │ │ │ ├── KMeansWithOptions.cs │ │ │ │ │ │ └── KMeansWithOptions.tt │ │ │ │ │ ├── MulticlassClassification/ │ │ │ │ │ │ ├── ImageClassification/ │ │ │ │ │ │ │ ├── ImageClassificationDefault.cs │ │ │ │ │ │ │ ├── LearningRateSchedulingCifarResnetTransferLearning.cs │ │ │ │ │ │ │ ├── ResnetV2101TransferLearningEarlyStopping.cs │ │ │ │ │ │ │ └── ResnetV2101TransferLearningTrainTestSplit.cs │ │ │ │ │ │ ├── LbfgsMaximumEntropy.cs │ │ │ │ │ │ ├── LbfgsMaximumEntropy.tt │ │ │ │ │ │ ├── LbfgsMaximumEntropyWithOptions.cs │ │ │ │ │ │ ├── LbfgsMaximumEntropyWithOptions.tt │ │ │ │ │ │ ├── LightGbm.cs │ │ │ │ │ │ ├── LightGbm.tt │ │ │ │ │ │ ├── LightGbmWithOptions.cs │ │ │ │ │ │ ├── LightGbmWithOptions.tt │ │ │ │ │ │ ├── LogLossPerClass.cs │ │ │ │ │ │ ├── MulticlassClassification.ttinclude │ │ │ │ │ │ ├── NaiveBayes.cs │ │ │ │ │ │ ├── NaiveBayes.tt │ │ │ │ │ │ ├── OneVersusAll.cs │ │ │ │ │ │ ├── OneVersusAll.tt │ │ │ │ │ │ ├── PairwiseCoupling.cs │ │ │ │ │ │ ├── PairwiseCoupling.tt │ │ │ │ │ │ ├── PermutationFeatureImportance.cs │ │ │ │ │ │ ├── PermutationFeatureImportanceLoadFromDisk.cs │ │ │ │ │ │ ├── SdcaMaximumEntropy.cs │ │ │ │ │ │ ├── SdcaMaximumEntropy.tt │ │ │ │ │ │ ├── SdcaMaximumEntropyWithOptions.cs │ │ │ │ │ │ ├── SdcaMaximumEntropyWithOptions.tt │ │ │ │ │ │ ├── SdcaNonCalibrated.cs │ │ │ │ │ │ ├── SdcaNonCalibrated.tt │ │ │ │ │ │ ├── SdcaNonCalibratedWithOptions.cs │ │ │ │ │ │ └── SdcaNonCalibratedWithOptions.tt │ │ │ │ │ ├── Ranking/ │ │ │ │ │ │ ├── FastTree.cs │ │ │ │ │ │ ├── FastTree.tt │ │ │ │ │ │ ├── FastTreeWithOptions.cs │ │ │ │ │ │ ├── FastTreeWithOptions.tt │ │ │ │ │ │ ├── LightGbm.cs │ │ │ │ │ │ ├── LightGbm.tt │ │ │ │ │ │ ├── LightGbmWithOptions.cs │ │ │ │ │ │ ├── LightGbmWithOptions.tt │ │ │ │ │ │ ├── PermutationFeatureImportance.cs │ │ │ │ │ │ ├── PermutationFeatureImportanceLoadFromDisk.cs │ │ │ │ │ │ └── Ranking.ttinclude │ │ │ │ │ ├── Recommendation/ │ │ │ │ │ │ ├── MatrixFactorization.cs │ │ │ │ │ │ ├── MatrixFactorization.tt │ │ │ │ │ │ ├── MatrixFactorizationTemplate.ttinclude │ │ │ │ │ │ ├── MatrixFactorizationWithOptions.cs │ │ │ │ │ │ ├── MatrixFactorizationWithOptions.tt │ │ │ │ │ │ └── OneClassMatrixFactorizationWithOptions.cs │ │ │ │ │ └── Regression/ │ │ │ │ │ ├── FastForest.cs │ │ │ │ │ ├── FastForest.tt │ │ │ │ │ ├── FastForestWithOptions.cs │ │ │ │ │ ├── FastForestWithOptions.tt │ │ │ │ │ ├── FastTree.cs │ │ │ │ │ ├── FastTree.tt │ │ │ │ │ ├── FastTreeTweedie.cs │ │ │ │ │ ├── FastTreeTweedie.tt │ │ │ │ │ ├── FastTreeTweedieWithOptions.cs │ │ │ │ │ ├── FastTreeTweedieWithOptions.tt │ │ │ │ │ ├── FastTreeWithOptions.cs │ │ │ │ │ ├── FastTreeWithOptions.tt │ │ │ │ │ ├── Gam.cs │ │ │ │ │ ├── Gam.tt │ │ │ │ │ ├── GamAdvanced.cs │ │ │ │ │ ├── GamWithOptions.cs │ │ │ │ │ ├── GamWithOptions.tt │ │ │ │ │ ├── GamWithOptionsAdvanced.cs │ │ │ │ │ ├── LbfgsPoissonRegression.cs │ │ │ │ │ ├── LbfgsPoissonRegression.tt │ │ │ │ │ ├── LbfgsPoissonRegressionWithOptions.cs │ │ │ │ │ ├── LbfgsPoissonRegressionWithOptions.tt │ │ │ │ │ ├── LightGbm.cs │ │ │ │ │ ├── LightGbm.tt │ │ │ │ │ ├── LightGbmAdvanced.cs │ │ │ │ │ ├── LightGbmWithOptions.cs │ │ │ │ │ ├── LightGbmWithOptions.tt │ │ │ │ │ ├── LightGbmWithOptionsAdvanced.cs │ │ │ │ │ ├── OnlineGradientDescent.cs │ │ │ │ │ ├── OnlineGradientDescent.tt │ │ │ │ │ ├── OnlineGradientDescentWithOptions.cs │ │ │ │ │ ├── OnlineGradientDescentWithOptions.tt │ │ │ │ │ ├── OrdinaryLeastSquares.cs │ │ │ │ │ ├── OrdinaryLeastSquares.tt │ │ │ │ │ ├── OrdinaryLeastSquaresAdvanced.cs │ │ │ │ │ ├── OrdinaryLeastSquaresWithOptions.cs │ │ │ │ │ ├── OrdinaryLeastSquaresWithOptions.tt │ │ │ │ │ ├── OrdinaryLeastSquaresWithOptionsAdvanced.cs │ │ │ │ │ ├── PermutationFeatureImportance.cs │ │ │ │ │ ├── PermutationFeatureImportanceLoadFromDisk.cs │ │ │ │ │ ├── RegressionSamplesTemplate.ttinclude │ │ │ │ │ ├── Sdca.cs │ │ │ │ │ ├── Sdca.tt │ │ │ │ │ ├── SdcaWithOptions.cs │ │ │ │ │ └── SdcaWithOptions.tt │ │ │ │ ├── Transforms/ │ │ │ │ │ ├── ApplyONNXModelWithInMemoryImages.cs │ │ │ │ │ ├── ApplyOnnxModel.cs │ │ │ │ │ ├── ApproximatedKernelMap.cs │ │ │ │ │ ├── CalculateFeatureContribution.cs │ │ │ │ │ ├── CalculateFeatureContributionCalibrated.cs │ │ │ │ │ ├── Categorical/ │ │ │ │ │ │ ├── OneHotEncoding.cs │ │ │ │ │ │ ├── OneHotEncodingMultiColumn.cs │ │ │ │ │ │ ├── OneHotHashEncoding.cs │ │ │ │ │ │ └── OneHotHashEncodingMultiColumn.cs │ │ │ │ │ ├── Concatenate.cs │ │ │ │ │ ├── Conversion/ │ │ │ │ │ │ ├── ConvertType.cs │ │ │ │ │ │ ├── ConvertTypeMultiColumn.cs │ │ │ │ │ │ ├── Hash.cs │ │ │ │ │ │ ├── HashWithOptions.cs │ │ │ │ │ │ ├── KeyToValueToKey.cs │ │ │ │ │ │ ├── MapKeyToBinaryVector.cs │ │ │ │ │ │ ├── MapKeyToValueMultiColumn.cs │ │ │ │ │ │ ├── MapKeyToVector.cs │ │ │ │ │ │ ├── MapKeyToVectorMultiColumn.cs │ │ │ │ │ │ ├── MapValue.cs │ │ │ │ │ │ ├── MapValueIdvLookup.cs │ │ │ │ │ │ ├── MapValueToArray.cs │ │ │ │ │ │ └── MapValueToKeyMultiColumn.cs │ │ │ │ │ ├── CopyColumns.cs │ │ │ │ │ ├── CountTargetEncoding.cs │ │ │ │ │ ├── CustomMapping.cs │ │ │ │ │ ├── CustomMappingSaveAndLoad.cs │ │ │ │ │ ├── CustomMappingWithInMemoryCustomType.cs │ │ │ │ │ ├── DropColumns.cs │ │ │ │ │ ├── Expression.cs │ │ │ │ │ ├── FeatureSelection/ │ │ │ │ │ │ ├── SelectFeaturesBasedOnCount.cs │ │ │ │ │ │ ├── SelectFeaturesBasedOnCountMultiColumn.cs │ │ │ │ │ │ ├── SelectFeaturesBasedOnMutualInformation.cs │ │ │ │ │ │ └── SelectFeaturesBasedOnMutualInformationMultiColumn.cs │ │ │ │ │ ├── ImageAnalytics/ │ │ │ │ │ │ ├── ConvertToGrayScale.cs │ │ │ │ │ │ ├── ConvertToGrayScaleInMemory.cs │ │ │ │ │ │ ├── ConvertToImage.cs │ │ │ │ │ │ ├── DnnFeaturizeImage.cs │ │ │ │ │ │ ├── ExtractPixels.cs │ │ │ │ │ │ ├── LoadImages.cs │ │ │ │ │ │ └── ResizeImages.cs │ │ │ │ │ ├── IndicateMissingValues.cs │ │ │ │ │ ├── IndicateMissingValuesMultiColumn.cs │ │ │ │ │ ├── NormalizeBinning.cs │ │ │ │ │ ├── NormalizeBinningMulticolumn.cs │ │ │ │ │ ├── NormalizeGlobalContrast.cs │ │ │ │ │ ├── NormalizeLogMeanVariance.cs │ │ │ │ │ ├── NormalizeLogMeanVarianceFixZero.cs │ │ │ │ │ ├── NormalizeLpNorm.cs │ │ │ │ │ ├── NormalizeMeanVariance.cs │ │ │ │ │ ├── NormalizeMinMax.cs │ │ │ │ │ ├── NormalizeMinMaxMulticolumn.cs │ │ │ │ │ ├── NormalizeSupervisedBinning.cs │ │ │ │ │ ├── Projection/ │ │ │ │ │ │ ├── VectorWhiten.cs │ │ │ │ │ │ └── VectorWhitenWithOptions.cs │ │ │ │ │ ├── ReplaceMissingValues.cs │ │ │ │ │ ├── ReplaceMissingValuesMultiColumn.cs │ │ │ │ │ ├── SelectColumns.cs │ │ │ │ │ ├── StatefulCustomMapping.cs │ │ │ │ │ ├── Text/ │ │ │ │ │ │ ├── ApplyCustomWordEmbedding.cs │ │ │ │ │ │ ├── ApplyWordEmbedding.cs │ │ │ │ │ │ ├── FeaturizeText.cs │ │ │ │ │ │ ├── FeaturizeTextWithOptions.cs │ │ │ │ │ │ ├── LatentDirichletAllocation.cs │ │ │ │ │ │ ├── NormalizeText.cs │ │ │ │ │ │ ├── ProduceHashedNgrams.cs │ │ │ │ │ │ ├── ProduceHashedWordBags.cs │ │ │ │ │ │ ├── ProduceNgrams.cs │ │ │ │ │ │ ├── ProduceWordBags.cs │ │ │ │ │ │ ├── RemoveDefaultStopWords.cs │ │ │ │ │ │ ├── RemoveStopWords.cs │ │ │ │ │ │ ├── TokenizeIntoCharactersAsKeys.cs │ │ │ │ │ │ └── TokenizeIntoWords.cs │ │ │ │ │ ├── TimeSeries/ │ │ │ │ │ │ ├── DetectAnomalyBySrCnn.cs │ │ │ │ │ │ ├── DetectAnomalyBySrCnnBatchPrediction.cs │ │ │ │ │ │ ├── DetectChangePointBySsa.cs │ │ │ │ │ │ ├── DetectChangePointBySsaBatchPrediction.cs │ │ │ │ │ │ ├── DetectChangePointBySsaStream.cs │ │ │ │ │ │ ├── DetectEntireAnomalyBySrCnn.cs │ │ │ │ │ │ ├── DetectIidChangePoint.cs │ │ │ │ │ │ ├── DetectIidChangePointBatchPrediction.cs │ │ │ │ │ │ ├── DetectIidSpike.cs │ │ │ │ │ │ ├── DetectIidSpikeBatchPrediction.cs │ │ │ │ │ │ ├── DetectSeasonality.cs │ │ │ │ │ │ ├── DetectSpikeBySsa.cs │ │ │ │ │ │ ├── DetectSpikeBySsaBatchPrediction.cs │ │ │ │ │ │ ├── Forecasting.cs │ │ │ │ │ │ ├── ForecastingWithConfidenceInterval.cs │ │ │ │ │ │ ├── LocalizeRootCause.cs │ │ │ │ │ │ └── LocalizeRootCauseMultidimension.cs │ │ │ │ │ └── TreeFeaturization/ │ │ │ │ │ ├── BinaryClassificationFeaturization.ttinclude │ │ │ │ │ ├── FastForestBinaryFeaturizationWithOptions.cs │ │ │ │ │ ├── FastForestBinaryFeaturizationWithOptions.tt │ │ │ │ │ ├── FastForestRegressionFeaturizationWithOptions.cs │ │ │ │ │ ├── FastForestRegressionFeaturizationWithOptions.tt │ │ │ │ │ ├── FastTreeBinaryFeaturizationWithOptions.cs │ │ │ │ │ ├── FastTreeBinaryFeaturizationWithOptions.tt │ │ │ │ │ ├── FastTreeRankingFeaturizationWithOptions.cs │ │ │ │ │ ├── FastTreeRankingFeaturizationWithOptions.tt │ │ │ │ │ ├── FastTreeRegressionFeaturizationWithOptions.cs │ │ │ │ │ ├── FastTreeRegressionFeaturizationWithOptions.tt │ │ │ │ │ ├── FastTreeTweedieFeaturizationWithOptions.cs │ │ │ │ │ ├── FastTreeTweedieFeaturizationWithOptions.tt │ │ │ │ │ ├── PretrainedTreeEnsembleFeaturizationWithOptions.cs │ │ │ │ │ ├── RankingFeaturization.ttinclude │ │ │ │ │ └── RegressionFeaturization.ttinclude │ │ │ │ └── WithOnFitDelegate.cs │ │ │ ├── Microsoft.ML.Samples.csproj │ │ │ └── Program.cs │ │ ├── Microsoft.ML.Samples.GPU/ │ │ │ ├── Microsoft.ML.Samples.GPU.csproj │ │ │ └── Program.cs │ │ └── Microsoft.ML.Samples.OneDal/ │ │ ├── Microsoft.ML.Samples.OneDal.csproj │ │ ├── Program.cs │ │ ├── requirements.txt │ │ ├── run_bench.py │ │ └── run_sample.ps1 │ └── specs/ │ ├── AutoML Experiment API Proposal.md │ ├── ML.Net Sweepable API.md │ ├── mlnet-cli/ │ │ └── MLNET-CLI-Specs.md │ ├── mlnet-database-loader/ │ │ └── mlnet-database-loader-specs.md │ └── mvp.md ├── eng/ │ ├── BranchInfo.props │ ├── Build.props │ ├── ExternalBenchmarkDataFiles.props │ ├── Packaging.targets │ ├── Publishing.props │ ├── Signing.props │ ├── TensorflowMetaFiles.props │ ├── TokenizerData.targets │ ├── Version.Details.xml │ ├── Versions.props │ ├── common/ │ │ ├── BuildConfiguration/ │ │ │ └── build-configuration.json │ │ ├── CIBuild.cmd │ │ ├── PSScriptAnalyzerSettings.psd1 │ │ ├── README.md │ │ ├── SetupNugetSources.ps1 │ │ ├── SetupNugetSources.sh │ │ ├── build.cmd │ │ ├── build.ps1 │ │ ├── build.sh │ │ ├── cibuild.sh │ │ ├── core-templates/ │ │ │ ├── job/ │ │ │ │ ├── job.yml │ │ │ │ ├── onelocbuild.yml │ │ │ │ ├── publish-build-assets.yml │ │ │ │ ├── renovate.yml │ │ │ │ ├── source-build.yml │ │ │ │ └── source-index-stage1.yml │ │ │ ├── jobs/ │ │ │ │ ├── codeql-build.yml │ │ │ │ ├── jobs.yml │ │ │ │ └── source-build.yml │ │ │ ├── post-build/ │ │ │ │ ├── common-variables.yml │ │ │ │ ├── post-build.yml │ │ │ │ └── setup-maestro-vars.yml │ │ │ ├── stages/ │ │ │ │ └── renovate.yml │ │ │ ├── steps/ │ │ │ │ ├── cleanup-microbuild.yml │ │ │ │ ├── component-governance.yml │ │ │ │ ├── enable-internal-runtimes.yml │ │ │ │ ├── enable-internal-sources.yml │ │ │ │ ├── generate-sbom.yml │ │ │ │ ├── get-delegation-sas.yml │ │ │ │ ├── get-federated-access-token.yml │ │ │ │ ├── install-microbuild-impl.yml │ │ │ │ ├── install-microbuild.yml │ │ │ │ ├── publish-build-artifacts.yml │ │ │ │ ├── publish-logs.yml │ │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ │ ├── retain-build.yml │ │ │ │ ├── send-to-helix.yml │ │ │ │ ├── source-build.yml │ │ │ │ └── source-index-stage1-publish.yml │ │ │ └── variables/ │ │ │ └── pool-providers.yml │ │ ├── cross/ │ │ │ ├── arm/ │ │ │ │ └── tizen/ │ │ │ │ └── tizen.patch │ │ │ ├── arm64/ │ │ │ │ └── tizen/ │ │ │ │ └── tizen.patch │ │ │ ├── armel/ │ │ │ │ └── tizen/ │ │ │ │ └── tizen.patch │ │ │ ├── build-android-rootfs.sh │ │ │ ├── build-rootfs.sh │ │ │ ├── install-debs.py │ │ │ ├── riscv64/ │ │ │ │ └── tizen/ │ │ │ │ └── tizen.patch │ │ │ ├── tizen-build-rootfs.sh │ │ │ ├── tizen-fetch.sh │ │ │ └── toolchain.cmake │ │ ├── darc-init.ps1 │ │ ├── darc-init.sh │ │ ├── dotnet-install.cmd │ │ ├── dotnet-install.ps1 │ │ ├── dotnet-install.sh │ │ ├── dotnet.cmd │ │ ├── dotnet.ps1 │ │ ├── dotnet.sh │ │ ├── enable-cross-org-publishing.ps1 │ │ ├── generate-locproject.ps1 │ │ ├── generate-sbom-prep.ps1 │ │ ├── generate-sbom-prep.sh │ │ ├── helixpublish.proj │ │ ├── init-tools-native.cmd │ │ ├── init-tools-native.ps1 │ │ ├── init-tools-native.sh │ │ ├── internal/ │ │ │ ├── Directory.Build.props │ │ │ ├── NuGet.config │ │ │ └── Tools.csproj │ │ ├── internal-feed-operations.ps1 │ │ ├── internal-feed-operations.sh │ │ ├── loc/ │ │ │ └── P22DotNetHtmlLocalization.lss │ │ ├── msbuild.ps1 │ │ ├── msbuild.sh │ │ ├── native/ │ │ │ ├── CommonLibrary.psm1 │ │ │ ├── common-library.sh │ │ │ ├── init-compiler.sh │ │ │ ├── init-distro-rid.sh │ │ │ ├── init-os-and-arch.sh │ │ │ ├── install-cmake-test.sh │ │ │ ├── install-cmake.sh │ │ │ ├── install-dependencies.sh │ │ │ └── install-tool.ps1 │ │ ├── pipeline-logging-functions.ps1 │ │ ├── pipeline-logging-functions.sh │ │ ├── post-build/ │ │ │ ├── check-channel-consistency.ps1 │ │ │ ├── nuget-validation.ps1 │ │ │ ├── nuget-verification.ps1 │ │ │ ├── publish-using-darc.ps1 │ │ │ ├── redact-logs.ps1 │ │ │ ├── sourcelink-validation.ps1 │ │ │ └── symbols-validation.ps1 │ │ ├── renovate.env │ │ ├── retain-build.ps1 │ │ ├── sdk-task.ps1 │ │ ├── sdk-task.sh │ │ ├── sdl/ │ │ │ ├── NuGet.config │ │ │ ├── configure-sdl-tool.ps1 │ │ │ ├── execute-all-sdl-tools.ps1 │ │ │ ├── extract-artifact-archives.ps1 │ │ │ ├── extract-artifact-packages.ps1 │ │ │ ├── init-sdl.ps1 │ │ │ ├── packages.config │ │ │ ├── run-sdl.ps1 │ │ │ ├── sdl.ps1 │ │ │ └── trim-assets-version.ps1 │ │ ├── template-guidance.md │ │ ├── templates/ │ │ │ ├── job/ │ │ │ │ ├── job.yml │ │ │ │ ├── onelocbuild.yml │ │ │ │ ├── publish-build-assets.yml │ │ │ │ ├── source-build.yml │ │ │ │ └── source-index-stage1.yml │ │ │ ├── jobs/ │ │ │ │ ├── codeql-build.yml │ │ │ │ ├── jobs.yml │ │ │ │ └── source-build.yml │ │ │ ├── post-build/ │ │ │ │ ├── common-variables.yml │ │ │ │ ├── post-build.yml │ │ │ │ └── setup-maestro-vars.yml │ │ │ ├── steps/ │ │ │ │ ├── component-governance.yml │ │ │ │ ├── enable-internal-runtimes.yml │ │ │ │ ├── enable-internal-sources.yml │ │ │ │ ├── generate-sbom.yml │ │ │ │ ├── get-delegation-sas.yml │ │ │ │ ├── get-federated-access-token.yml │ │ │ │ ├── publish-build-artifacts.yml │ │ │ │ ├── publish-logs.yml │ │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ │ ├── retain-build.yml │ │ │ │ ├── send-to-helix.yml │ │ │ │ ├── source-build.yml │ │ │ │ ├── source-index-stage1-publish.yml │ │ │ │ └── vmr-sync.yml │ │ │ ├── variables/ │ │ │ │ └── pool-providers.yml │ │ │ └── vmr-build-pr.yml │ │ ├── templates-official/ │ │ │ ├── job/ │ │ │ │ ├── job.yml │ │ │ │ ├── onelocbuild.yml │ │ │ │ ├── publish-build-assets.yml │ │ │ │ ├── source-build.yml │ │ │ │ └── source-index-stage1.yml │ │ │ ├── jobs/ │ │ │ │ ├── codeql-build.yml │ │ │ │ ├── jobs.yml │ │ │ │ └── source-build.yml │ │ │ ├── post-build/ │ │ │ │ ├── common-variables.yml │ │ │ │ ├── post-build.yml │ │ │ │ └── setup-maestro-vars.yml │ │ │ ├── steps/ │ │ │ │ ├── component-governance.yml │ │ │ │ ├── enable-internal-runtimes.yml │ │ │ │ ├── enable-internal-sources.yml │ │ │ │ ├── generate-sbom.yml │ │ │ │ ├── get-delegation-sas.yml │ │ │ │ ├── get-federated-access-token.yml │ │ │ │ ├── publish-build-artifacts.yml │ │ │ │ ├── publish-logs.yml │ │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ │ ├── retain-build.yml │ │ │ │ ├── send-to-helix.yml │ │ │ │ ├── source-build.yml │ │ │ │ └── source-index-stage1-publish.yml │ │ │ └── variables/ │ │ │ ├── pool-providers.yml │ │ │ └── sdl-variables.yml │ │ ├── tools.ps1 │ │ ├── tools.sh │ │ ├── vmr-sync.ps1 │ │ └── vmr-sync.sh │ ├── helix.proj │ ├── pkg/ │ │ ├── CommonPackage.props │ │ ├── DnnImageFeaturizer.props │ │ └── _._ │ ├── snk/ │ │ └── Test.snk │ └── testing/ │ ├── runTests.cmd │ └── runTests.sh ├── es-metadata.yml ├── global.json ├── restore.cmd ├── restore.sh ├── src/ │ ├── Common/ │ │ └── tests/ │ │ └── RetryHelper.cs │ ├── DefaultGenApiDocIds.txt │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Microsoft.Data.Analysis/ │ │ ├── ColumnArithmetic.OperationEnums.cs │ │ ├── ColumnArithmetic.OperationEnums.tt │ │ ├── ColumnArithmeticTemplate.ttinclude │ │ ├── Computations/ │ │ │ ├── Arithmetic.cs │ │ │ ├── Arithmetic.net8.cs │ │ │ ├── Arithmetic.netstandard.cs │ │ │ ├── Arithmetic.netstandard.tt │ │ │ └── IArithmetic.cs │ │ ├── Converters.cs │ │ ├── Converters.tt │ │ ├── DataFrame.Arrow.cs │ │ ├── DataFrame.BinaryOperations.cs │ │ ├── DataFrame.BinaryOperations.tt │ │ ├── DataFrame.BinaryOperators.cs │ │ ├── DataFrame.BinaryOperators.tt │ │ ├── DataFrame.IDataView.cs │ │ ├── DataFrame.IO.cs │ │ ├── DataFrame.Join.Extrensions.cs │ │ ├── DataFrame.Join.cs │ │ ├── DataFrame.cs │ │ ├── DataFrameBuffer.cs │ │ ├── DataFrameColumn.BinaryOperations.cs │ │ ├── DataFrameColumn.BinaryOperations.tt │ │ ├── DataFrameColumn.BinaryOperators.cs │ │ ├── DataFrameColumn.BinaryOperators.tt │ │ ├── DataFrameColumn.Computations.cs │ │ ├── DataFrameColumn.Computations.tt │ │ ├── DataFrameColumn.cs │ │ ├── DataFrameColumnCollection.cs │ │ ├── DataFrameColumns/ │ │ │ ├── ArrowStringDataFrameColumn.cs │ │ │ ├── PrimitiveDataFrameColumns/ │ │ │ │ ├── BooleanDataFrameColumn.cs │ │ │ │ ├── ByteDataFrameColumn.cs │ │ │ │ ├── CharDataFrameColumn.cs │ │ │ │ ├── DateTimeDataFrameColumn.cs │ │ │ │ ├── DecimalDataFrameColumn.cs │ │ │ │ ├── DoubleDataFrameColumn.cs │ │ │ │ ├── Int16DataFrameColumn.cs │ │ │ │ ├── Int32DataFrameColumn.cs │ │ │ │ ├── Int64DataFrameColumn.cs │ │ │ │ ├── SByteDataFrameColumn.cs │ │ │ │ ├── SingleDataFrameColumn.cs │ │ │ │ ├── UInt16DataFrameColumn.cs │ │ │ │ ├── UInt32DataFrameColumn.cs │ │ │ │ └── UInt64DataFrameColumn.cs │ │ │ ├── StringDataFrameColumn.cs │ │ │ └── VBufferDataFrameColumn.cs │ │ ├── DataFrameRow.cs │ │ ├── DataFrameRowCollection.cs │ │ ├── DateTimeComputation.cs │ │ ├── Extensions.cs │ │ ├── GroupBy.cs │ │ ├── IDataView.Extension.cs │ │ ├── Microsoft.Data.Analysis.csproj │ │ ├── PrimitiveColumnContainer.BinaryOperations.cs │ │ ├── PrimitiveColumnContainer.cs │ │ ├── PrimitiveColumnContainerHelpers.cs │ │ ├── PrimitiveDataFrameColumn.BinaryOperationAPIs.ExplodedColumns.cs │ │ ├── PrimitiveDataFrameColumn.BinaryOperationAPIs.ExplodedColumns.tt │ │ ├── PrimitiveDataFrameColumn.BinaryOperationImplementations.Exploded.cs │ │ ├── PrimitiveDataFrameColumn.BinaryOperationImplementations.Exploded.tt │ │ ├── PrimitiveDataFrameColumn.BinaryOperations.Combinations.tt │ │ ├── PrimitiveDataFrameColumn.BinaryOperations.Combinations.ttinclude │ │ ├── PrimitiveDataFrameColumn.BinaryOperations.cs │ │ ├── PrimitiveDataFrameColumn.BinaryOperations.tt │ │ ├── PrimitiveDataFrameColumn.BinaryOperators.cs │ │ ├── PrimitiveDataFrameColumn.BinaryOperators.tt │ │ ├── PrimitiveDataFrameColumn.Computations.cs │ │ ├── PrimitiveDataFrameColumn.Computations.tt │ │ ├── PrimitiveDataFrameColumn.Sort.cs │ │ ├── PrimitiveDataFrameColumn.cs │ │ ├── PrimitiveDataFrameColumnComputations.cs │ │ ├── PrimitiveDataFrameColumnComputations.tt │ │ ├── ReadOnlyDataFrameBuffer.cs │ │ ├── StringDataFrameColumn.BinaryOperations.cs │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ ├── TextFieldParser.cs │ │ └── Utils/ │ │ ├── ArrayUtility.cs │ │ └── BitUtility.cs │ ├── Microsoft.Data.Analysis.Interactive/ │ │ ├── DataFrameKernelExtension.cs │ │ ├── Microsoft.Data.Analysis.Interactive.csproj │ │ └── TabularDataResourceExtensions.cs │ ├── Microsoft.Extensions.ML/ │ │ ├── Builder/ │ │ │ ├── BuilderExtensions.cs │ │ │ └── PredictionEnginePoolBuilder.cs │ │ ├── MLOptions.cs │ │ ├── Microsoft.Extensions.ML.csproj │ │ ├── ModelLoaders/ │ │ │ ├── FileModelLoader.cs │ │ │ ├── ModelLoader.cs │ │ │ └── UriModelLoader.cs │ │ ├── ModelReloadToken.cs │ │ ├── PoolLoader.cs │ │ ├── PredictionEnginePool.cs │ │ ├── PredictionEnginePoolExtensions.cs │ │ ├── PredictionEnginePoolOptions.cs │ │ ├── PredictionEnginePoolPolicy.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── ServiceCollectionExtensions.cs │ ├── Microsoft.ML/ │ │ ├── Microsoft.ML.csproj │ │ ├── PACKAGE.md │ │ └── build/ │ │ └── netstandard2.0/ │ │ └── Microsoft.ML.targets │ ├── Microsoft.ML.AutoML/ │ │ ├── API/ │ │ │ ├── AutoCatalog.cs │ │ │ ├── AutoMLExperimentExtension.cs │ │ │ ├── BinaryClassificationExperiment.cs │ │ │ ├── ColumnInference.cs │ │ │ ├── ExperimentBase.cs │ │ │ ├── ExperimentResults/ │ │ │ │ ├── CrossValidationExperimentResult.cs │ │ │ │ └── ExperimentResult.cs │ │ │ ├── ExperimentSettings.cs │ │ │ ├── InferenceException.cs │ │ │ ├── MLContextExtension.cs │ │ │ ├── MulticlassClassificationExperiment.cs │ │ │ ├── Pipeline.cs │ │ │ ├── RankingExperiment.cs │ │ │ ├── RecommendationExperiment.cs │ │ │ ├── RegressionExperiment.cs │ │ │ ├── RunDetails/ │ │ │ │ ├── CrossValidationRunDetail.cs │ │ │ │ └── RunDetail.cs │ │ │ └── SweepableExtension.cs │ │ ├── Assembly.cs │ │ ├── AutoMLExperiment/ │ │ │ ├── AutoMLExperiment.cs │ │ │ ├── IDatasetManager.cs │ │ │ ├── IMLContextManager.cs │ │ │ ├── IMetricManager.cs │ │ │ ├── IMonitor.cs │ │ │ ├── IPerformanceMonitor.cs │ │ │ ├── IStopTrainingManager.cs │ │ │ ├── ITrialResultManager.cs │ │ │ ├── Runner/ │ │ │ │ ├── ITrialRunner.cs │ │ │ │ └── SweepablePipelineRunner.cs │ │ │ ├── TrialPerformanceMetrics.cs │ │ │ ├── TrialResult.cs │ │ │ └── TrialSettings.cs │ │ ├── AutoMlUtils.cs │ │ ├── CodeGen/ │ │ │ ├── apply_onnx_search_space.json │ │ │ ├── code_gen_flag.json │ │ │ ├── concat_search_space.json │ │ │ ├── dnn_featurizer_image_search_space.json │ │ │ ├── estimator-schema.json │ │ │ ├── extra_pixels_search_space.json │ │ │ ├── fast_forest_search_space.json │ │ │ ├── fast_tree_search_space.json │ │ │ ├── featurize_text_search_space.json │ │ │ ├── image_classification_search_space.json │ │ │ ├── lbfgs_search_space.json │ │ │ ├── lgbm_search_space.json │ │ │ ├── load_image_search_space.json │ │ │ ├── map_key_to_value_search_space.json │ │ │ ├── map_value_to_key_search_space.json │ │ │ ├── matrix_factorization_search_space.json │ │ │ ├── naive_search_space.json │ │ │ ├── named_entity_recognition_search_space.json │ │ │ ├── normalize_min_max_search_space.json │ │ │ ├── normalize_text_search_space.json │ │ │ ├── object_detection_search_space.json │ │ │ ├── onehot_encoding_search_space.json │ │ │ ├── question_answering_search_space.json │ │ │ ├── replace_missing_value_search_space.json │ │ │ ├── resize_image_search_space.json │ │ │ ├── sdca_search_space.json │ │ │ ├── search-space-schema.json │ │ │ ├── sentence_similarity_search_space.json │ │ │ ├── ssa_search_space.json │ │ │ ├── text_classification_search_space.json │ │ │ ├── trainer-estimators.json │ │ │ ├── transformer-estimators.json │ │ │ └── type_converter_search_space.json │ │ ├── ColumnInference/ │ │ │ ├── ColumnGroupingInference.cs │ │ │ ├── ColumnInferenceApi.cs │ │ │ ├── ColumnInferenceValidationUtil.cs │ │ │ ├── ColumnInformationUtil.cs │ │ │ ├── ColumnPurpose.cs │ │ │ ├── ColumnTypeInference.cs │ │ │ ├── PurposeInference.cs │ │ │ ├── TextFileContents.cs │ │ │ └── TextFileSample.cs │ │ ├── DatasetDimensions/ │ │ │ ├── ColumnDimensions.cs │ │ │ ├── DatasetDimensionsApi.cs │ │ │ └── DatasetDimensionsUtil.cs │ │ ├── EstimatorExtensions/ │ │ │ ├── EstimatorExtensionCatalog.cs │ │ │ ├── EstimatorExtensions.cs │ │ │ └── IEstimatorExtension.cs │ │ ├── Experiment/ │ │ │ ├── Experiment.cs │ │ │ ├── MetricsAgents/ │ │ │ │ ├── BinaryMetricsAgent.cs │ │ │ │ ├── IMetricsAgent.cs │ │ │ │ ├── MetricsAgentUtil.cs │ │ │ │ ├── MultiMetricsAgent.cs │ │ │ │ ├── RankingMetricsAgent.cs │ │ │ │ └── RegressionMetricsAgent.cs │ │ │ ├── ModelContainer.cs │ │ │ ├── OptimizingMetricInfo.cs │ │ │ ├── RecipeInference.cs │ │ │ ├── Runners/ │ │ │ │ ├── CrossValRunner.cs │ │ │ │ ├── CrossValSummaryRunner.cs │ │ │ │ ├── IRunner.cs │ │ │ │ ├── RunnerUtil.cs │ │ │ │ └── TrainValidateRunner.cs │ │ │ ├── SuggestedPipeline.cs │ │ │ ├── SuggestedPipelineBuilder.cs │ │ │ ├── SuggestedPipelineRunDetails/ │ │ │ │ ├── SuggestedPipelineCrossValRunDetail.cs │ │ │ │ ├── SuggestedPipelineRunDetail.cs │ │ │ │ └── SuggestedPipelineRunDetailUtil.cs │ │ │ └── SuggestedTrainer.cs │ │ ├── Microsoft.ML.AutoML.csproj │ │ ├── PipelineSuggesters/ │ │ │ └── PipelineSuggester.cs │ │ ├── SweepableEstimator/ │ │ │ ├── Converter/ │ │ │ │ ├── MultiModelPipelineConverter.cs │ │ │ │ ├── SweepableEstimatorConverter.cs │ │ │ │ ├── SweepableEstimatorPipelineConverter.cs │ │ │ │ └── SweepablePipelineConverter.cs │ │ │ ├── Estimator.cs │ │ │ ├── Estimators/ │ │ │ │ ├── ApplyOnnx.cs │ │ │ │ ├── Calibrators.cs │ │ │ │ ├── Concatenate.cs │ │ │ │ ├── FastForest.cs │ │ │ │ ├── FastTree.cs │ │ │ │ ├── FeaturizeText.cs │ │ │ │ ├── ForecastBySsa.cs │ │ │ │ ├── Images.cs │ │ │ │ ├── Lbfgs.cs │ │ │ │ ├── LightGbm.cs │ │ │ │ ├── MapValueToKey.cs │ │ │ │ ├── MatrixFactorization.cs │ │ │ │ ├── NamedEntityRecognitionMulti.cs │ │ │ │ ├── NormalizeMinMax.cs │ │ │ │ ├── NormalizeText.cs │ │ │ │ ├── ObjectDetection.cs │ │ │ │ ├── OneHotEncoding.cs │ │ │ │ ├── QuestionAnswering.cs │ │ │ │ ├── ReplaceMissingValue.cs │ │ │ │ ├── Sdca.cs │ │ │ │ ├── SentenceSimilarity.cs │ │ │ │ ├── TextClassification.cs │ │ │ │ └── TypeConvert.cs │ │ │ ├── ISweepable.cs │ │ │ ├── MultiModelPipeline.cs │ │ │ ├── Spec/ │ │ │ │ ├── Readme.md │ │ │ │ └── SweepablePipeline.md │ │ │ ├── SweepableEstimator.cs │ │ │ ├── SweepableEstimatorPipeline.cs │ │ │ └── SweepablePipeline.cs │ │ ├── Sweepers/ │ │ │ ├── ISweeper.cs │ │ │ ├── Parameters.cs │ │ │ ├── Random.cs │ │ │ ├── SmacSweeper.cs │ │ │ ├── SweeperBase.cs │ │ │ └── SweeperProbabilityUtils.cs │ │ ├── TaskKind.cs │ │ ├── Terminators/ │ │ │ └── IterationBasedTerminator.cs │ │ ├── TrainerExtensions/ │ │ │ ├── BinaryTrainerExtensions.cs │ │ │ ├── ITrainerExtension.cs │ │ │ ├── MultiTrainerExtensions.cs │ │ │ ├── RankingTrainerExtensions.cs │ │ │ ├── RecommendationTrainerExtensions.cs │ │ │ ├── RegressionTrainerExtensions.cs │ │ │ ├── SweepableParams.cs │ │ │ ├── TrainerExtensionCatalog.cs │ │ │ └── TrainerExtensionUtil.cs │ │ ├── TransformInference/ │ │ │ ├── TransformInference.cs │ │ │ ├── TransformInferenceApi.cs │ │ │ └── TransformPostTrainerInference.cs │ │ ├── Tuner/ │ │ │ ├── AutoZeroTuner.cs │ │ │ ├── CostFrugalTuner.cs │ │ │ ├── EciCfoTuner.cs │ │ │ ├── Flow2.cs │ │ │ ├── GridSearchTuner.cs │ │ │ ├── ITuner.cs │ │ │ ├── PipelineProposer.cs │ │ │ ├── Portfolios.json │ │ │ ├── RandomSearchTuner.cs │ │ │ ├── SearchThread.cs │ │ │ └── SmacTuner.cs │ │ └── Utils/ │ │ ├── ArrayMath.cs │ │ ├── BestResultUtil.cs │ │ ├── ColumnTypeExtensions.cs │ │ ├── DatasetColumnInfo.cs │ │ ├── Entity.cs │ │ ├── Logger.cs │ │ ├── RandomNumberGenerator.cs │ │ ├── SplitUtil.cs │ │ ├── StringEditDistance.cs │ │ ├── SweepableParamAttributes.cs │ │ └── UserInputValidationUtil.cs │ ├── Microsoft.ML.AutoML.Interactive/ │ │ ├── ActionThrottler.cs │ │ ├── AutoMLMonitorKernelExtension.cs │ │ ├── Microsoft.ML.AutoML.Interactive.csproj │ │ └── NotebookMonitor.cs │ ├── Microsoft.ML.CodeGenerator/ │ │ ├── Assembly.cs │ │ ├── CodeGenerator/ │ │ │ └── CSharp/ │ │ │ ├── AzureCodeGenerator/ │ │ │ │ ├── AzureAttachCodeGenenrator.cs │ │ │ │ ├── AzureAttachConsoleAppCodeGenerator.cs │ │ │ │ └── AzureAttachModelCodeGenerator.cs │ │ │ ├── CSharpCodeFile.cs │ │ │ ├── CSharpProject.cs │ │ │ ├── CSharpProjectFile.cs │ │ │ ├── CSharpSolution.cs │ │ │ ├── CodeGenerator.cs │ │ │ ├── CodeGeneratorSettings.cs │ │ │ ├── Interface/ │ │ │ │ ├── ICSharpFile.cs │ │ │ │ ├── ICSharpProject.cs │ │ │ │ ├── ICSharpProjectGenerator.cs │ │ │ │ ├── ICSharpSolution.cs │ │ │ │ ├── ICSharpSolutionGenerator.cs │ │ │ │ ├── IProjectGenerator.cs │ │ │ │ └── IWritable.cs │ │ │ ├── PipelineExtension.cs │ │ │ ├── Symbols.cs │ │ │ ├── TrainerGeneratorBase.cs │ │ │ ├── TrainerGeneratorFactory.cs │ │ │ ├── TrainerGenerators.cs │ │ │ ├── TransformGeneratorBase.cs │ │ │ ├── TransformGeneratorFactory.cs │ │ │ └── TransformGenerators.cs │ │ ├── Microsoft.ML.CodeGenerator.csproj │ │ ├── Templates/ │ │ │ ├── Azure/ │ │ │ │ ├── Console/ │ │ │ │ │ ├── AzureModelBuilder.cs │ │ │ │ │ └── AzureModelBuilder.tt │ │ │ │ └── Model/ │ │ │ │ ├── AzureImageModelOutputClass.cs │ │ │ │ ├── AzureImageModelOutputClass.tt │ │ │ │ ├── AzureObjectDetectionModelOutputClass.cs │ │ │ │ └── AzureObjectDetectionModelOutputClass.tt │ │ │ └── Console/ │ │ │ ├── Annotation.ttinclude │ │ │ ├── ConsumeModel.cs │ │ │ ├── ConsumeModel.tt │ │ │ ├── ModelBuilder.cs │ │ │ ├── ModelBuilder.tt │ │ │ ├── ModelInputClass.cs │ │ │ ├── ModelInputClass.tt │ │ │ ├── ModelOutputClass.cs │ │ │ ├── ModelOutputClass.tt │ │ │ ├── ModelProject.cs │ │ │ ├── ModelProject.tt │ │ │ ├── PredictProgram.cs │ │ │ ├── PredictProgram.tt │ │ │ ├── PredictProject.cs │ │ │ └── PredictProject.tt │ │ └── Utils.cs │ ├── Microsoft.ML.Console/ │ │ ├── Console.cs │ │ └── Microsoft.ML.Console.csproj │ ├── Microsoft.ML.Core/ │ │ ├── BestFriendAttribute.cs │ │ ├── CommandLine/ │ │ │ ├── ArgumentAttribute.cs │ │ │ ├── ArgumentType.cs │ │ │ ├── CharCursor.cs │ │ │ ├── CmdLexer.cs │ │ │ ├── CmdParser.cs │ │ │ ├── DefaultArgumentAttribute.cs │ │ │ ├── EnumValueDisplayAttribute.cs │ │ │ ├── HideEnumValueAttribute.cs │ │ │ └── SpecialPurpose.cs │ │ ├── ComponentModel/ │ │ │ ├── AssemblyLoadingUtils.cs │ │ │ ├── ComponentCatalog.cs │ │ │ ├── ComponentFactory.cs │ │ │ ├── ExtensionBaseAttribute.cs │ │ │ └── LoadableClassAttribute.cs │ │ ├── Data/ │ │ │ ├── AnnotationBuilderExtensions.cs │ │ │ ├── AnnotationUtils.cs │ │ │ ├── ColumnTypeExtensions.cs │ │ │ ├── DataKind.cs │ │ │ ├── ICommand.cs │ │ │ ├── IEstimator.cs │ │ │ ├── IFileHandle.cs │ │ │ ├── IHostEnvironment.cs │ │ │ ├── IProgressChannel.cs │ │ │ ├── IRowToRowMapper.cs │ │ │ ├── ISchemaBindableMapper.cs │ │ │ ├── IValueMapper.cs │ │ │ ├── InPredicate.cs │ │ │ ├── KeyTypeExtensions.cs │ │ │ ├── LinkedRootCursorBase.cs │ │ │ ├── LinkedRowFilterCursorBase.cs │ │ │ ├── LinkedRowRootCursorBase.cs │ │ │ ├── ModelHeader.cs │ │ │ ├── ModelLoadContext.cs │ │ │ ├── ModelLoading.cs │ │ │ ├── ModelSaveContext.cs │ │ │ ├── ModelSaving.cs │ │ │ ├── ProgressReporter.cs │ │ │ ├── ReadOnlyMemoryUtils.cs │ │ │ ├── Repository.cs │ │ │ ├── RoleMappedSchema.cs │ │ │ ├── RootCursorBase.cs │ │ │ ├── SchemaExtensions.cs │ │ │ ├── ServerChannel.cs │ │ │ ├── SynchronizedCursorBase.cs │ │ │ └── WrappingRow.cs │ │ ├── EntryPoints/ │ │ │ ├── EntryPointModuleAttribute.cs │ │ │ ├── EntryPointUtils.cs │ │ │ ├── ModuleArgs.cs │ │ │ ├── PredictorModel.cs │ │ │ └── TransformModel.cs │ │ ├── Environment/ │ │ │ ├── ConsoleEnvironment.cs │ │ │ ├── HostEnvironmentBase.cs │ │ │ └── TelemetryMessage.cs │ │ ├── Microsoft.ML.Core.csproj │ │ ├── Prediction/ │ │ │ ├── IPredictor.cs │ │ │ ├── ITrainer.cs │ │ │ ├── ITree.cs │ │ │ ├── TrainContext.cs │ │ │ └── TrainerInfo.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── PublicKey.cs │ │ ├── SearchSpace/ │ │ │ ├── BoolearnChoiceAttribute.cs │ │ │ ├── ChoiceAttribute.cs │ │ │ ├── NestOptionAttribute.cs │ │ │ └── RangeAttribute.cs │ │ └── Utilities/ │ │ ├── ArrayUtils.cs │ │ ├── BigArray.cs │ │ ├── BinFinder.cs │ │ ├── BitUtils.cs │ │ ├── CharUtils.cs │ │ ├── CmdIndenter.cs │ │ ├── Contracts.cs │ │ ├── DoubleParser.cs │ │ ├── FixedSizeQueue.cs │ │ ├── FloatUtils.cs │ │ ├── FuncInstanceMethodInfo1`2.cs │ │ ├── FuncInstanceMethodInfo1`3.cs │ │ ├── FuncInstanceMethodInfo1`4.cs │ │ ├── FuncInstanceMethodInfo2`4.cs │ │ ├── FuncInstanceMethodInfo3`3.cs │ │ ├── FuncInstanceMethodInfo3`4.cs │ │ ├── FuncMethodInfo1`1.cs │ │ ├── FuncMethodInfo1`2.cs │ │ ├── FuncMethodInfo1`3.cs │ │ ├── FuncMethodInfo2`3.cs │ │ ├── FuncMethodInfo3`2.cs │ │ ├── FuncMethodInfo3`3.cs │ │ ├── FuncMethodInfo`1.cs │ │ ├── FuncMethodInfo`2.cs │ │ ├── FuncMethodInfo`3.cs │ │ ├── FuncStaticMethodInfo1`1.cs │ │ ├── FuncStaticMethodInfo1`2.cs │ │ ├── FuncStaticMethodInfo1`3.cs │ │ ├── FuncStaticMethodInfo2`3.cs │ │ ├── FuncStaticMethodInfo3`2.cs │ │ ├── FuncStaticMethodInfo3`3.cs │ │ ├── HashArray.cs │ │ ├── Hashing.cs │ │ ├── Heap.cs │ │ ├── HybridMemoryStream.cs │ │ ├── IndentedTextWriterExtensions.cs │ │ ├── LineParser.cs │ │ ├── LruCache.cs │ │ ├── MathUtils.cs │ │ ├── MatrixTransposeOps.cs │ │ ├── MinWaiter.cs │ │ ├── NormStr.cs │ │ ├── ObjectPool.cs │ │ ├── OrderedWaiter.cs │ │ ├── PathUtils.cs │ │ ├── PlatformUtils.cs │ │ ├── Random.cs │ │ ├── ReservoirSampler.cs │ │ ├── ResourceManagerUtils.cs │ │ ├── Stats.cs │ │ ├── Stream.cs │ │ ├── SubsetStream.cs │ │ ├── SummaryStatistics.cs │ │ ├── SupervisedBinFinder.cs │ │ ├── TaskExtensions.cs │ │ ├── TextReaderStream.cs │ │ ├── ThreadUtils.cs │ │ ├── Tree.cs │ │ ├── Utils.cs │ │ └── VBufferUtils.cs │ ├── Microsoft.ML.CpuMath/ │ │ ├── AlignedArray.cs │ │ ├── AlignedMatrix.cs │ │ ├── AssemblyInfo.cs │ │ ├── AvxIntrinsics.cs │ │ ├── CpuAligenedMathUtils.cs │ │ ├── CpuMathUtils.cs │ │ ├── CpuMathUtils.netcoreapp.cs │ │ ├── CpuMathUtils.netstandard.cs │ │ ├── EigenUtils.cs │ │ ├── FactorizationMachine/ │ │ │ ├── AvxIntrinsics.cs │ │ │ ├── FactorizationMachineInterface.cs │ │ │ ├── FactorizationMachineInterface.netcoreapp.cs │ │ │ └── FactorizationMachineInterface.netstandard.cs │ │ ├── ICpuBuffer.cs │ │ ├── IntUtils.cs │ │ ├── Microsoft.ML.CpuMath.csproj │ │ ├── ProbabilityFunctions.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── SseIntrinsics.cs │ │ ├── Thunk.cs │ │ └── build/ │ │ └── netstandard2.0/ │ │ └── Microsoft.ML.CpuMath.props │ ├── Microsoft.ML.Data/ │ │ ├── Commands/ │ │ │ ├── CrossValidationCommand.cs │ │ │ ├── DataCommand.cs │ │ │ ├── DefaultColumnNames.cs │ │ │ ├── EvaluateCommand.cs │ │ │ ├── SaveDataCommand.cs │ │ │ ├── SavePredictorCommand.cs │ │ │ ├── ScoreCommand.cs │ │ │ ├── ShowSchemaCommand.cs │ │ │ ├── TestCommand.cs │ │ │ ├── TrainCommand.cs │ │ │ ├── TrainTestCommand.cs │ │ │ └── TypeInfoCommand.cs │ │ ├── Data/ │ │ │ ├── BufferBuilder.cs │ │ │ ├── Combiner.cs │ │ │ ├── Conversion.cs │ │ │ ├── DataViewTypeManager.cs │ │ │ ├── DataViewUtils.cs │ │ │ ├── ILegacyDataLoader.cs │ │ │ ├── IRowSeekable.cs │ │ │ ├── ITransposeDataView.cs │ │ │ ├── RowCursorUtils.cs │ │ │ ├── SchemaAnnotationsExtensions.cs │ │ │ ├── SchemaDefinition.cs │ │ │ └── SlotCursor.cs │ │ ├── DataDebuggerPreview.cs │ │ ├── DataLoadSave/ │ │ │ ├── Binary/ │ │ │ │ ├── BinaryLoader.cs │ │ │ │ ├── BinaryLoaderSaverCatalog.cs │ │ │ │ ├── BinarySaver.cs │ │ │ │ ├── BlockLookup.cs │ │ │ │ ├── CodecFactory.cs │ │ │ │ ├── Codecs.cs │ │ │ │ ├── CompressionKind.cs │ │ │ │ ├── Header.cs │ │ │ │ ├── IValueCodec.cs │ │ │ │ ├── MemoryStreamPool.cs │ │ │ │ └── UnsafeTypeOps.cs │ │ │ ├── CompositeDataLoader.cs │ │ │ ├── CompositeLoaderEstimator.cs │ │ │ ├── DataLoaderExtensions.cs │ │ │ ├── DataOperationsCatalog.cs │ │ │ ├── Database/ │ │ │ │ ├── DatabaseLoader.cs │ │ │ │ ├── DatabaseLoaderCatalog.cs │ │ │ │ ├── DatabaseLoaderCursor.cs │ │ │ │ ├── DatabaseSource.cs │ │ │ │ ├── DbExtensions.cs │ │ │ │ └── LoadColumnNameAttribute.cs │ │ │ ├── EstimatorChain.cs │ │ │ ├── EstimatorExtensions.cs │ │ │ ├── FakeSchema.cs │ │ │ ├── LegacyCompositeDataLoader.cs │ │ │ ├── MultiFileSource.cs │ │ │ ├── Text/ │ │ │ │ ├── BlockingQueue.cs │ │ │ │ ├── LoadColumnAttribute.cs │ │ │ │ ├── TextLoader.cs │ │ │ │ ├── TextLoaderCursor.cs │ │ │ │ ├── TextLoaderParser.cs │ │ │ │ ├── TextLoaderSaverCatalog.cs │ │ │ │ └── TextSaver.cs │ │ │ ├── TransformWrapper.cs │ │ │ ├── TransformerChain.cs │ │ │ ├── Transpose/ │ │ │ │ ├── TransposeLoader.cs │ │ │ │ └── TransposeSaver.cs │ │ │ ├── TrivialEstimator.cs │ │ │ └── TrivialLoaderEstimator.cs │ │ ├── DataView/ │ │ │ ├── AppendRowsDataView.cs │ │ │ ├── ArrayDataViewBuilder.cs │ │ │ ├── BatchDataViewMapperBase.cs │ │ │ ├── CacheDataView.cs │ │ │ ├── CompositeRowToRowMapper.cs │ │ │ ├── DataViewConstructionUtils.cs │ │ │ ├── DataViewExtensions.cs │ │ │ ├── EmptyDataView.cs │ │ │ ├── InternalSchemaDefinition.cs │ │ │ ├── LambdaColumnMapper.cs │ │ │ ├── LambdaFilter.cs │ │ │ ├── OpaqueDataView.cs │ │ │ ├── RowToRowMapperTransform.cs │ │ │ ├── SimpleRow.cs │ │ │ ├── Transposer.cs │ │ │ ├── TypedCursor.cs │ │ │ ├── ZipBinding.cs │ │ │ └── ZipDataView.cs │ │ ├── DebuggerExtensions.cs │ │ ├── Deprecated/ │ │ │ ├── Instances/ │ │ │ │ └── HeaderSchema.cs │ │ │ ├── TGUIAttribute.cs │ │ │ └── Vector/ │ │ │ ├── GenericSpanSortHelper.cs │ │ │ ├── VBufferMathUtils.cs │ │ │ └── VectorUtils.cs │ │ ├── Dirty/ │ │ │ ├── ChooseColumnsByIndexTransform.cs │ │ │ ├── ILoss.cs │ │ │ ├── IniFileUtils.cs │ │ │ ├── ModelParametersBase.cs │ │ │ ├── PredictionUtils.cs │ │ │ ├── PredictorInterfaces.cs │ │ │ └── PredictorUtils.cs │ │ ├── EntryPoints/ │ │ │ ├── CommonOutputs.cs │ │ │ ├── EntryPointNode.cs │ │ │ ├── InputBase.cs │ │ │ ├── InputBuilder.cs │ │ │ ├── PredictorModelImpl.cs │ │ │ ├── SchemaManipulation.cs │ │ │ ├── SelectRows.cs │ │ │ ├── SummarizePredictor.cs │ │ │ └── TransformModelImpl.cs │ │ ├── Evaluators/ │ │ │ ├── AnomalyDetectionEvaluator.cs │ │ │ ├── AucAggregator.cs │ │ │ ├── BinaryClassifierEvaluator.cs │ │ │ ├── ClusteringEvaluator.cs │ │ │ ├── EvaluatorBase.cs │ │ │ ├── EvaluatorUtils.cs │ │ │ ├── MamlEvaluator.cs │ │ │ ├── Metrics/ │ │ │ │ ├── AnomalyDetectionMetrics.cs │ │ │ │ ├── BinaryClassificationMetrics.cs │ │ │ │ ├── BinaryPrecisionRecallDataPoint.cs │ │ │ │ ├── CalibratedBinaryClassificationMetrics.cs │ │ │ │ ├── ClusteringMetrics.cs │ │ │ │ ├── ConfusionMatrix.cs │ │ │ │ ├── MulticlassClassificationMetrics.cs │ │ │ │ ├── RankingMetrics.cs │ │ │ │ └── RegressionMetrics.cs │ │ │ ├── MultiOutputRegressionEvaluator.cs │ │ │ ├── MulticlassClassificationEvaluator.cs │ │ │ ├── QuantileRegressionEvaluator.cs │ │ │ ├── RankingEvaluator.cs │ │ │ ├── RegressionEvaluator.cs │ │ │ └── RegressionEvaluatorBase.cs │ │ ├── LoggingEventArgs.cs │ │ ├── MLContext.cs │ │ ├── Microsoft.ML.Data.csproj │ │ ├── Model/ │ │ │ ├── ModelOperationsCatalog.cs │ │ │ ├── Onnx/ │ │ │ │ ├── ICanSaveOnnx.cs │ │ │ │ ├── OnnxContext.cs │ │ │ │ └── OnnxNode.cs │ │ │ ├── Pfa/ │ │ │ │ ├── BoundPfaContext.cs │ │ │ │ ├── ICanSavePfa.cs │ │ │ │ ├── ModelUtils.cs │ │ │ │ ├── PfaContext.cs │ │ │ │ ├── PfaUtils.cs │ │ │ │ └── SavePfaCommand.cs │ │ │ └── PredictionEngineExtensions.cs │ │ ├── Prediction/ │ │ │ ├── Calibrator.cs │ │ │ ├── CalibratorCatalog.cs │ │ │ ├── ICalculateFeatureContribution.cs │ │ │ ├── IModelCombiner.cs │ │ │ ├── IPredictionTransformer.cs │ │ │ └── PredictionEngine.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Scorers/ │ │ │ ├── BinaryClassifierScorer.cs │ │ │ ├── ClusteringScorer.cs │ │ │ ├── FeatureContributionCalculation.cs │ │ │ ├── GenericScorer.cs │ │ │ ├── MulticlassClassificationScorer.cs │ │ │ ├── PredictedLabelScorerBase.cs │ │ │ ├── PredictionTransformer.cs │ │ │ ├── QuantileRegressionScorer.cs │ │ │ ├── RowToRowScorerBase.cs │ │ │ ├── SchemaBindablePredictorWrapper.cs │ │ │ └── ScoreSchemaFactory.cs │ │ ├── TrainCatalog.cs │ │ ├── Training/ │ │ │ ├── ITrainerEstimator.cs │ │ │ ├── TrainerEstimatorBase.cs │ │ │ ├── TrainerInputBase.cs │ │ │ └── TrainerUtils.cs │ │ ├── Transforms/ │ │ │ ├── BindingsWrappedRowCursor.cs │ │ │ ├── BootstrapSamplingTransformer.cs │ │ │ ├── CatalogUtils.cs │ │ │ ├── ColumnBindingsBase.cs │ │ │ ├── ColumnConcatenatingEstimator.cs │ │ │ ├── ColumnConcatenatingTransformer.cs │ │ │ ├── ColumnCopying.cs │ │ │ ├── ColumnSelecting.cs │ │ │ ├── ConversionsExtensionsCatalog.cs │ │ │ ├── ExplainabilityCatalog.cs │ │ │ ├── ExtensionsCatalog.cs │ │ │ ├── FeatureContributionCalculationTransformer.cs │ │ │ ├── GenerateNumberTransform.cs │ │ │ ├── Hashing.cs │ │ │ ├── InvertHashUtils.cs │ │ │ ├── KeyToValue.cs │ │ │ ├── KeyToVector.cs │ │ │ ├── LabelConvertTransform.cs │ │ │ ├── LabelIndicatorTransform.cs │ │ │ ├── MetadataDispatcher.cs │ │ │ ├── NAFilter.cs │ │ │ ├── NopTransform.cs │ │ │ ├── NormalizeColumn.cs │ │ │ ├── NormalizeColumnDbl.cs │ │ │ ├── NormalizeColumnSng.cs │ │ │ ├── NormalizeUtils.cs │ │ │ ├── Normalizer.cs │ │ │ ├── OneToOneTransformerBase.cs │ │ │ ├── PerGroupTransformBase.cs │ │ │ ├── RangeFilter.cs │ │ │ ├── RowShufflingTransformer.cs │ │ │ ├── RowToRowTransformerBase.cs │ │ │ ├── SkipTakeFilter.cs │ │ │ ├── SlotsDroppingTransformer.cs │ │ │ ├── TermTransform.md │ │ │ ├── TrainAndScoreTransformer.cs │ │ │ ├── TransformBase.cs │ │ │ ├── TransformInputBase.cs │ │ │ ├── TransformsCatalog.cs │ │ │ ├── TypeConverting.cs │ │ │ ├── ValueMapping.cs │ │ │ ├── ValueToKeyMappingEstimator.cs │ │ │ ├── ValueToKeyMappingTransformer.cs │ │ │ ├── ValueToKeyMappingTransformerImpl.cs │ │ │ └── doc.xml │ │ ├── Utilities/ │ │ │ ├── ApplyTransformUtils.cs │ │ │ ├── ColumnCursor.cs │ │ │ ├── ComponentCreation.cs │ │ │ ├── LocalEnvironment.cs │ │ │ ├── ModelFileUtils.cs │ │ │ ├── SlotDropper.cs │ │ │ ├── StreamUtils.cs │ │ │ ├── TimerScope.cs │ │ │ └── TypeParsingUtils.cs │ │ └── Utils/ │ │ ├── ApiUtils.cs │ │ ├── LossFunctions.cs │ │ └── SequencePool.cs │ ├── Microsoft.ML.DataView/ │ │ ├── Contracts.cs │ │ ├── DataViewRowId.cs │ │ ├── DataViewSchema.cs │ │ ├── DataViewType.cs │ │ ├── Hashing.cs │ │ ├── IDataView.cs │ │ ├── KeyDataViewType.cs │ │ ├── Microsoft.ML.DataView.csproj │ │ ├── SchemaDebuggerProxy.cs │ │ ├── Utils.cs │ │ ├── VBuffer.cs │ │ ├── VBufferEditor.cs │ │ └── VectorType.cs │ ├── Microsoft.ML.DnnAnalyzer/ │ │ └── Microsoft.ML.DnnAnalyzer/ │ │ ├── DnnAnalyzer.cs │ │ └── Microsoft.ML.DnnAnalyzer.csproj │ ├── Microsoft.ML.DnnImageFeaturizer.AlexNet/ │ │ ├── AlexNetExtension.cs │ │ └── Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj │ ├── Microsoft.ML.DnnImageFeaturizer.ModelRedist/ │ │ └── Microsoft.ML.DnnImageFeaturizer.ModelRedist.csproj │ ├── Microsoft.ML.DnnImageFeaturizer.ResNet101/ │ │ ├── Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj │ │ └── ResNet101Extension.cs │ ├── Microsoft.ML.DnnImageFeaturizer.ResNet18/ │ │ ├── Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj │ │ └── ResNet18Extension.cs │ ├── Microsoft.ML.DnnImageFeaturizer.ResNet50/ │ │ ├── Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj │ │ └── ResNet50Extension.cs │ ├── Microsoft.ML.Ensemble/ │ │ ├── Batch.cs │ │ ├── EnsembleUtils.cs │ │ ├── EntryPoints/ │ │ │ ├── CreateEnsemble.cs │ │ │ ├── DiversityMeasure.cs │ │ │ ├── Ensemble.cs │ │ │ ├── FeatureSelector.cs │ │ │ ├── OutputCombiner.cs │ │ │ ├── PipelineEnsemble.cs │ │ │ └── SubModelSelector.cs │ │ ├── FeatureSubsetModel.cs │ │ ├── Microsoft.ML.Ensemble.csproj │ │ ├── OutputCombiners/ │ │ │ ├── Average.cs │ │ │ ├── BaseAverager.cs │ │ │ ├── BaseMultiAverager.cs │ │ │ ├── BaseMultiCombiner.cs │ │ │ ├── BaseScalarStacking.cs │ │ │ ├── BaseStacking.cs │ │ │ ├── IOutputCombiner.cs │ │ │ ├── Median.cs │ │ │ ├── MultiAverage.cs │ │ │ ├── MultiMedian.cs │ │ │ ├── MultiStacking.cs │ │ │ ├── MultiVoting.cs │ │ │ ├── MultiWeightedAverage.cs │ │ │ ├── RegressionStacking.cs │ │ │ ├── Stacking.cs │ │ │ ├── Voting.cs │ │ │ └── WeightedAverage.cs │ │ ├── PipelineEnsemble.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Selector/ │ │ │ ├── DiversityMeasure/ │ │ │ │ ├── BaseDisagreementDiversityMeasure.cs │ │ │ │ ├── DisagreementDiversityMeasure.cs │ │ │ │ ├── ModelDiversityMetric.cs │ │ │ │ ├── MultiDisagreementDiversityMeasure.cs │ │ │ │ └── RegressionDisagreementDiversityMeasure.cs │ │ │ ├── FeatureSelector/ │ │ │ │ ├── AllFeatureSelector.cs │ │ │ │ └── RandomFeatureSelector.cs │ │ │ ├── IDiversityMeasure.cs │ │ │ ├── IFeatureSelector.cs │ │ │ ├── ISubModelSelector.cs │ │ │ ├── ISubsetSelector.cs │ │ │ ├── SubModelSelector/ │ │ │ │ ├── AllSelector.cs │ │ │ │ ├── AllSelectorMulticlass.cs │ │ │ │ ├── BaseBestPerformanceSelector.cs │ │ │ │ ├── BaseDiverseSelector.cs │ │ │ │ ├── BaseSubModelSelector.cs │ │ │ │ ├── BestDiverseSelectorBinary.cs │ │ │ │ ├── BestDiverseSelectorMulticlass.cs │ │ │ │ ├── BestDiverseSelectorRegression.cs │ │ │ │ ├── BestPerformanceRegressionSelector.cs │ │ │ │ ├── BestPerformanceSelector.cs │ │ │ │ ├── BestPerformanceSelectorMulticlass.cs │ │ │ │ └── SubModelDataSelector.cs │ │ │ └── SubsetSelector/ │ │ │ ├── AllInstanceSelector.cs │ │ │ ├── BaseSubsetSelector.cs │ │ │ ├── BootstrapSelector.cs │ │ │ └── RandomPartitionSelector.cs │ │ ├── Subset.cs │ │ └── Trainer/ │ │ ├── Binary/ │ │ │ └── EnsembleTrainer.cs │ │ ├── EnsembleDistributionModelParameters.cs │ │ ├── EnsembleModelParameters.cs │ │ ├── EnsembleModelParametersBase.cs │ │ ├── EnsembleTrainerBase.cs │ │ ├── Multiclass/ │ │ │ ├── EnsembleMulticlassModelParameters.cs │ │ │ └── MulticlassDataPartitionEnsembleTrainer.cs │ │ └── Regression/ │ │ └── RegressionEnsembleTrainer.cs │ ├── Microsoft.ML.EntryPoints/ │ │ ├── CVSplit.cs │ │ ├── CrossValidationMacro.cs │ │ ├── DataViewReference.cs │ │ ├── FeatureCombiner.cs │ │ ├── ImportTextData.cs │ │ ├── JsonUtils/ │ │ │ ├── ExecuteGraphCommand.cs │ │ │ ├── GraphRunner.cs │ │ │ └── JsonManifestUtils.cs │ │ ├── MacroUtils.cs │ │ ├── Microsoft.ML.EntryPoints.csproj │ │ ├── ModelOperations.cs │ │ ├── OneVersusAllMacro.cs │ │ ├── PermutationFeatureImportance.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── ScoreColumnSelector.cs │ │ ├── ScoreModel.cs │ │ ├── TrainTestMacro.cs │ │ └── TrainTestSplit.cs │ ├── Microsoft.ML.Experimental/ │ │ ├── MLContextExtensions.cs │ │ ├── Microsoft.ML.Experimental.csproj │ │ └── OneToOneTransformerBaseExtensions.cs │ ├── Microsoft.ML.Fairlearn/ │ │ ├── AutoML/ │ │ │ ├── AutoMLExperimentExtension.cs │ │ │ └── TunerFactory.cs │ │ ├── FairlearnCatalog.cs │ │ ├── MLContextExtension.cs │ │ ├── Metrics/ │ │ │ ├── FairlearnMetricCatalog.cs │ │ │ └── GroupMetric.cs │ │ ├── Microsoft.ML.Fairlearn.csproj │ │ └── Reductions/ │ │ ├── GridSearchTrialRunner.cs │ │ ├── Moment.cs │ │ ├── Utilities.cs │ │ └── UtilityParity.cs │ ├── Microsoft.ML.FastTree/ │ │ ├── BinFile/ │ │ │ └── BinFinder.cs │ │ ├── BoostingFastTree.cs │ │ ├── Dataset/ │ │ │ ├── Dataset.cs │ │ │ ├── DatasetUtils.cs │ │ │ ├── DenseIntArray.cs │ │ │ ├── Feature.cs │ │ │ ├── FeatureFlock.cs │ │ │ ├── FeatureHistogram.cs │ │ │ ├── FileObjectStore.cs │ │ │ ├── IntArray.cs │ │ │ ├── NHotFeatureFlock.cs │ │ │ ├── OneHotFeatureFlock.cs │ │ │ ├── RepeatIntArray.cs │ │ │ ├── SegmentIntArray.cs │ │ │ ├── SingletonFeatureFlock.cs │ │ │ └── SparseIntArray.cs │ │ ├── FastTree.cs │ │ ├── FastTreeArguments.cs │ │ ├── FastTreeClassification.cs │ │ ├── FastTreeRanking.cs │ │ ├── FastTreeRegression.cs │ │ ├── FastTreeTweedie.cs │ │ ├── GamClassification.cs │ │ ├── GamModelParameters.cs │ │ ├── GamRegression.cs │ │ ├── GamTrainer.cs │ │ ├── Microsoft.ML.FastTree.csproj │ │ ├── PACKAGE.md │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── RandomForest.cs │ │ ├── RandomForestClassification.cs │ │ ├── RandomForestRegression.cs │ │ ├── RegressionTree.cs │ │ ├── SumupPerformanceCommand.cs │ │ ├── Training/ │ │ │ ├── Applications/ │ │ │ │ ├── GradientWrappers.cs │ │ │ │ └── ObjectiveFunction.cs │ │ │ ├── BaggingProvider.cs │ │ │ ├── DcgCalculator.cs │ │ │ ├── DcgPermutationComparer.cs │ │ │ ├── DocumentPartitioning.cs │ │ │ ├── EarlyStoppingCriteria.cs │ │ │ ├── EnsembleCompression/ │ │ │ │ ├── IEnsembleCompressor.cs │ │ │ │ ├── LassoBasedEnsembleCompressor.cs │ │ │ │ └── LassoFit.cs │ │ │ ├── OptimizationAlgorithms/ │ │ │ │ ├── AcceleratedGradientDescent.cs │ │ │ │ ├── ConjugateGradientDescent.cs │ │ │ │ ├── GradientDescent.cs │ │ │ │ ├── NoOptimizationAlgorithm.cs │ │ │ │ └── OptimizationAlgorithm.cs │ │ │ ├── Parallel/ │ │ │ │ ├── IParallelTraining.cs │ │ │ │ └── SingleTrainer.cs │ │ │ ├── RegressionTreeNodeDocuments.cs │ │ │ ├── ScoreTracker.cs │ │ │ ├── StepSearch.cs │ │ │ ├── Test.cs │ │ │ ├── TreeLearners/ │ │ │ │ ├── FastForestLeastSquaresTreeLearner.cs │ │ │ │ ├── LeastSquaresRegressionTreeLearner.cs │ │ │ │ └── TreeLearner.cs │ │ │ └── WinLossCalculator.cs │ │ ├── TreeEnsemble/ │ │ │ ├── InternalQuantileRegressionTree.cs │ │ │ ├── InternalRegressionTree.cs │ │ │ ├── InternalTreeEnsemble.cs │ │ │ └── TreeEnsembleCombiner.cs │ │ ├── TreeEnsemble.cs │ │ ├── TreeEnsembleFeaturizationEstimator.cs │ │ ├── TreeEnsembleFeaturizationTransformer.cs │ │ ├── TreeEnsembleFeaturizer.cs │ │ ├── TreeTrainersCatalog.cs │ │ ├── Utils/ │ │ │ ├── Algorithms.cs │ │ │ ├── BlockingThreadPool.cs │ │ │ ├── BufferPoolManager.cs │ │ │ ├── CompressUtils.cs │ │ │ ├── FastTreeIniFileUtils.cs │ │ │ ├── LinqExtensions.cs │ │ │ ├── MappedObjectPool.cs │ │ │ ├── PseudorandomFunction.cs │ │ │ ├── RegressionTreeBaseUtils.cs │ │ │ ├── StreamExtensions.cs │ │ │ ├── ThreadTaskManager.cs │ │ │ ├── Timer.cs │ │ │ ├── ToByteArrayExtensions.cs │ │ │ └── VectorUtils.cs │ │ └── doc.xml │ ├── Microsoft.ML.GenAI.Core/ │ │ ├── CausalLMPipelineChatClient.cs │ │ ├── Extension/ │ │ │ ├── ModuleExtension.cs │ │ │ └── TensorExtension.cs │ │ ├── Microsoft.ML.GenAI.Core.csproj │ │ ├── Module/ │ │ │ ├── Attention.cs │ │ │ ├── DynamicLoadingModule.cs │ │ │ ├── GenAILinear.cs │ │ │ ├── IDynamicLoadModule.cs │ │ │ ├── IQuantizeModule.cs │ │ │ ├── NewGELUActivation.cs │ │ │ ├── QuantizedLinear.cs │ │ │ ├── RMSNorm.cs │ │ │ └── RotaryEmbedding.cs │ │ ├── Pipeline/ │ │ │ ├── CausalLMModelInput.cs │ │ │ ├── CausalLMModelOutput.cs │ │ │ └── CausalLMPipeline.cs │ │ ├── Trainer/ │ │ │ ├── CausalLMDataset.cs │ │ │ └── CausalLMSupervisedFineTuningTrainer.cs │ │ ├── Utility/ │ │ │ ├── AttentionMaskConverter.cs │ │ │ ├── Cache.cs │ │ │ └── IChatTemplateBuilder.cs │ │ └── Utils.cs │ ├── Microsoft.ML.GenAI.LLaMA/ │ │ ├── Llama3CausalLMChatClient.cs │ │ ├── Llama3_1ChatTemplateBuilder.cs │ │ ├── LlamaCausalLMAgent.cs │ │ ├── LlamaChatCompletionService.cs │ │ ├── LlamaConfig.cs │ │ ├── LlamaForCausalLM.cs │ │ ├── LlamaTextCompletionService.cs │ │ ├── LlamaTokenizerHelper.cs │ │ ├── Microsoft.ML.GenAI.LLaMA.csproj │ │ ├── Module/ │ │ │ ├── LlamaDecoderLayer.cs │ │ │ ├── LlamaMLP.cs │ │ │ └── LlamaModel.cs │ │ └── Resource/ │ │ └── Config/ │ │ ├── meta-llama-3.1-405B-Instruct.json │ │ ├── meta-llama-3.1-70B-Instruct.json │ │ ├── meta-llama-3.1-8B-Instruct.json │ │ ├── meta-llama-3.2-1B-Instruct.json │ │ └── meta-llama-3.2-3B-Instruct.json │ ├── Microsoft.ML.GenAI.Mistral/ │ │ ├── Microsoft.ML.GenAI.Mistral.csproj │ │ ├── MistralCausalLMAgent.cs │ │ ├── MistralConfig.cs │ │ ├── MistralDecoderLayer.cs │ │ ├── MistralForCausalLM.cs │ │ ├── MistralMLP.cs │ │ ├── MistralModel.cs │ │ ├── MistralTokenizerHelper.cs │ │ ├── Mistral_7B_0_3ChatTemplateBuilder.cs │ │ └── Resource/ │ │ └── Config/ │ │ └── mistral-7B-instruct-v0.3.json │ ├── Microsoft.ML.GenAI.Phi/ │ │ ├── Extension/ │ │ │ └── SemanticKernelExtension.cs │ │ ├── Microsoft.ML.GenAI.Phi.csproj │ │ ├── Module/ │ │ │ ├── Phi2Attention.cs │ │ │ ├── Phi2DecoderLayer.cs │ │ │ ├── Phi2MLP.cs │ │ │ ├── Phi2Model.cs │ │ │ ├── Phi2RotaryEmbedding.cs │ │ │ ├── Phi3DecoderLayer.cs │ │ │ ├── Phi3MLP.cs │ │ │ ├── Phi3Model.cs │ │ │ └── Phi3SuScaledRotaryEmbedding.cs │ │ ├── Phi2/ │ │ │ ├── Config.cs │ │ │ ├── Phi2ForCausalLM.cs │ │ │ └── Phi2TokenizerHelper.cs │ │ ├── Phi3/ │ │ │ ├── Config.cs │ │ │ ├── Phi3CausalLMAgent.cs │ │ │ ├── Phi3CausalLMChatClient.cs │ │ │ ├── Phi3CausalLMChatCompletionService.cs │ │ │ ├── Phi3CausalLMTextGenerationService.cs │ │ │ ├── Phi3ChatTemplateBuilder.cs │ │ │ ├── Phi3ForCausalLM.cs │ │ │ └── Phi3TokenizerHelper.cs │ │ ├── README.md │ │ ├── Resource/ │ │ │ ├── Config/ │ │ │ │ ├── phi-2-config.json │ │ │ │ ├── phi-3-medium-128k-instruct-config.json │ │ │ │ ├── phi-3-medium-4k-instruct-config.json │ │ │ │ ├── phi-3-mini-128k-instruct-config.json │ │ │ │ └── phi-3-mini-4k-instruct-config.json │ │ │ └── README.md │ │ └── Utils.cs │ ├── Microsoft.ML.ImageAnalytics/ │ │ ├── EntryPoints/ │ │ │ └── ImageAnalytics.cs │ │ ├── ExtensionsCatalog.cs │ │ ├── ImageGrayscale.cs │ │ ├── ImageLoader.cs │ │ ├── ImagePixelExtractor.cs │ │ ├── ImageResizer.cs │ │ ├── ImageType.cs │ │ ├── MLImage.cs │ │ ├── Microsoft.ML.ImageAnalytics.csproj │ │ ├── PACKAGE.md │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── VectorToImageTransform.cs │ ├── Microsoft.ML.KMeansClustering/ │ │ ├── KMeansCatalog.cs │ │ ├── KMeansModelParameters.cs │ │ ├── KMeansPlusPlusTrainer.cs │ │ ├── Microsoft.ML.KMeansClustering.csproj │ │ └── Properties/ │ │ └── AssemblyInfo.cs │ ├── Microsoft.ML.LightGbm/ │ │ ├── LightGbmArguments.cs │ │ ├── LightGbmBinaryTrainer.cs │ │ ├── LightGbmCatalog.cs │ │ ├── LightGbmMulticlassTrainer.cs │ │ ├── LightGbmRankingTrainer.cs │ │ ├── LightGbmRegressionTrainer.cs │ │ ├── LightGbmTrainerBase.cs │ │ ├── Microsoft.ML.LightGbm.csproj │ │ ├── PACKAGE.md │ │ ├── Parallel/ │ │ │ ├── IParallel.cs │ │ │ └── SingleTrainer.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── WrappedLightGbmBooster.cs │ │ ├── WrappedLightGbmDataset.cs │ │ ├── WrappedLightGbmInterface.cs │ │ └── WrappedLightGbmTraining.cs │ ├── Microsoft.ML.Maml/ │ │ ├── ChainCommand.cs │ │ ├── HelpCommand.cs │ │ ├── MAML.cs │ │ ├── Microsoft.ML.Maml.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── VersionCommand.cs │ ├── Microsoft.ML.Mkl.Components/ │ │ ├── ComputeLRTrainingStdThroughHal.cs │ │ ├── Microsoft.ML.Mkl.Components.csproj │ │ ├── MklComponentsCatalog.cs │ │ ├── OlsLinearRegression.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── SymSgdClassificationTrainer.cs │ │ └── VectorWhitening.cs │ ├── Microsoft.ML.Mkl.Redist/ │ │ └── Microsoft.ML.Mkl.Redist.csproj │ ├── Microsoft.ML.OneDal/ │ │ ├── Microsoft.ML.OneDal.csproj │ │ ├── OneDalCatalog.cs │ │ ├── OneDalUtils.cs │ │ └── Properties/ │ │ └── AssemblyInfo.cs │ ├── Microsoft.ML.OnnxConverter/ │ │ ├── AssemblyInfo.cs │ │ ├── Microsoft.ML.OnnxConverter.csproj │ │ ├── OnnxContextImpl.cs │ │ ├── OnnxExportExtensions.cs │ │ ├── OnnxMl.cs │ │ ├── OnnxMl.md │ │ ├── OnnxNodeImpl.cs │ │ ├── OnnxUtils.cs │ │ └── SaveOnnxCommand.cs │ ├── Microsoft.ML.OnnxTransformer/ │ │ ├── DnnImageFeaturizerTransform.cs │ │ ├── Microsoft.ML.OnnxTransformer.csproj │ │ ├── OnnxCatalog.cs │ │ ├── OnnxMapType.cs │ │ ├── OnnxOptions.cs │ │ ├── OnnxSequenceType.cs │ │ ├── OnnxSessionOptions.cs │ │ ├── OnnxTransform.cs │ │ ├── OnnxTypeParser.cs │ │ ├── OnnxUtils.cs │ │ ├── PACKAGE.md │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── doc.xml │ ├── Microsoft.ML.PCA/ │ │ ├── Microsoft.ML.PCA.csproj │ │ ├── PCACatalog.cs │ │ ├── PcaTrainer.cs │ │ ├── PcaTransformer.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── doc.xml │ ├── Microsoft.ML.Parquet/ │ │ ├── Microsoft.ML.Parquet.csproj │ │ ├── ParquetLoader.cs │ │ ├── PartitionedFileLoader.cs │ │ ├── PartitionedPathParser.cs │ │ ├── PartitionedPathUtils.cs │ │ └── Properties/ │ │ └── AssemblyInfo.cs │ ├── Microsoft.ML.Recommender/ │ │ ├── MatrixFactorizationPredictor.cs │ │ ├── MatrixFactorizationTrainer.cs │ │ ├── Microsoft.ML.Recommender.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── RecommenderCatalog.cs │ │ ├── RecommenderUtils.cs │ │ └── SafeTrainingAndModelBuffer.cs │ ├── Microsoft.ML.ResultProcessor/ │ │ ├── Microsoft.ML.ResultProcessor.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── ResultProcessor.cs │ ├── Microsoft.ML.SamplesUtils/ │ │ ├── Microsoft.ML.SamplesUtils.csproj │ │ └── SamplesDatasetUtils.cs │ ├── Microsoft.ML.SearchSpace/ │ │ ├── Assembly.cs │ │ ├── Converter/ │ │ │ ├── ChoiceOptionConverter.cs │ │ │ ├── NumericOptionConverter.cs │ │ │ ├── OptionConverter.cs │ │ │ ├── ParameterConverter.cs │ │ │ └── SearchSpaceConverter.cs │ │ ├── Microsoft.ML.SearchSpace.csproj │ │ ├── Option/ │ │ │ ├── ChoiceOption.cs │ │ │ ├── NestOption.cs │ │ │ ├── OptionBase.cs │ │ │ └── UniformNumericOption.cs │ │ ├── Parameter.cs │ │ ├── Readme.md │ │ ├── SearchSpace.cs │ │ └── Tuner/ │ │ ├── DefaultValueTuner.cs │ │ ├── GridSearchTuner.cs │ │ └── RandomTuner.cs │ ├── Microsoft.ML.StandardTrainers/ │ │ ├── AssemblyInfo.cs │ │ ├── FactorizationMachine/ │ │ │ ├── FactorizationMachineCatalog.cs │ │ │ ├── FactorizationMachineTrainer.cs │ │ │ ├── FieldAwareFactorizationMachineModelParameters.cs │ │ │ ├── FieldAwareFactorizationMachineUtils.cs │ │ │ └── doc.xml │ │ ├── LdSvm/ │ │ │ ├── LdSvmModelParameters.cs │ │ │ └── LdSvmTrainer.cs │ │ ├── Microsoft.ML.StandardTrainers.csproj │ │ ├── Optimizer/ │ │ │ ├── DifferentiableFunction.cs │ │ │ ├── L1Optimizer.cs │ │ │ ├── LearningRateScheduler.cs │ │ │ ├── LineSearch.cs │ │ │ ├── OptimizationMonitor.cs │ │ │ ├── Optimizer.cs │ │ │ └── SgdOptimizer.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Standard/ │ │ │ ├── LinearModelParameters.cs │ │ │ ├── LinearPredictorUtils.cs │ │ │ ├── LogisticRegression/ │ │ │ │ ├── LbfgsPredictorBase.cs │ │ │ │ ├── LogisticRegression.cs │ │ │ │ └── MulticlassLogisticRegression.cs │ │ │ ├── ModelStatistics.cs │ │ │ ├── MulticlassClassification/ │ │ │ │ ├── MetaMulticlassTrainer.cs │ │ │ │ ├── MulticlassNaiveBayesTrainer.cs │ │ │ │ ├── OneVersusAllTrainer.cs │ │ │ │ └── PairwiseCouplingTrainer.cs │ │ │ ├── Online/ │ │ │ │ ├── AveragedLinear.cs │ │ │ │ ├── AveragedPerceptron.cs │ │ │ │ ├── LinearSvm.cs │ │ │ │ ├── OnlineGradientDescent.cs │ │ │ │ └── OnlineLinear.cs │ │ │ ├── PoissonRegression/ │ │ │ │ └── PoissonRegression.cs │ │ │ ├── SdcaBinary.cs │ │ │ ├── SdcaMulticlass.cs │ │ │ ├── SdcaRegression.cs │ │ │ ├── Simple/ │ │ │ │ └── SimpleTrainers.cs │ │ │ └── StochasticTrainerBase.cs │ │ └── StandardTrainersCatalog.cs │ ├── Microsoft.ML.Sweeper/ │ │ ├── Algorithms/ │ │ │ ├── Grid.cs │ │ │ ├── KdoSweeper.cs │ │ │ ├── NelderMead.cs │ │ │ ├── Random.cs │ │ │ ├── SmacSweeper.cs │ │ │ └── SweeperProbabilityUtils.cs │ │ ├── AsyncSweeper.cs │ │ ├── ConfigRunner.cs │ │ ├── ISweeper.cs │ │ ├── Microsoft.ML.Sweeper.csproj │ │ ├── Parameters.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── SweepCommand.cs │ │ ├── SweepResultEvaluator.cs │ │ └── SynthConfigRunner.cs │ ├── Microsoft.ML.TensorFlow/ │ │ ├── Microsoft.ML.TensorFlow.csproj │ │ ├── PACKAGE.md │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── TensorFlowModel.cs │ │ ├── TensorFlowSessionWrapper.cs │ │ ├── TensorTypeExtensions.cs │ │ ├── TensorflowCatalog.cs │ │ ├── TensorflowTransform.cs │ │ ├── TensorflowUtils.cs │ │ └── doc.xml │ ├── Microsoft.ML.TimeSeries/ │ │ ├── AdaptiveSingularSpectrumSequenceModeler.cs │ │ ├── Deseasonality.cs │ │ ├── EigenUtils.cs │ │ ├── ExponentialAverageTransform.cs │ │ ├── ExtensionsCatalog.cs │ │ ├── FftUtils.cs │ │ ├── IidAnomalyDetectionBase.cs │ │ ├── IidChangePointDetector.cs │ │ ├── IidSpikeDetector.cs │ │ ├── Microsoft.ML.TimeSeries.csproj │ │ ├── MovingAverageTransform.cs │ │ ├── PValueTransform.cs │ │ ├── PercentileThresholdTransform.cs │ │ ├── PolynomialUtils.cs │ │ ├── PredictionEngine.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── RootCauseAnalyzer.cs │ │ ├── RootCauseLocalizationType.cs │ │ ├── SRCNNAnomalyDetector.cs │ │ ├── SSaForecasting.cs │ │ ├── STL/ │ │ │ ├── FastLoess.cs │ │ │ ├── InnerStl.cs │ │ │ ├── LeastSquares.cs │ │ │ ├── LocalRegression.cs │ │ │ ├── Loess.cs │ │ │ ├── MathsTools.cs │ │ │ └── PolynomialModel.cs │ │ ├── SeasonalityDetector.cs │ │ ├── SequenceModelerBase.cs │ │ ├── SequentialAnomalyDetectionTransformBase.cs │ │ ├── SequentialForecastingTransformBase.cs │ │ ├── SequentialTransformBase.cs │ │ ├── SequentialTransformerBase.cs │ │ ├── SlidingWindowTransform.cs │ │ ├── SlidingWindowTransformBase.cs │ │ ├── SrCnnAnomalyDetectionBase.cs │ │ ├── SrCnnEntireAnomalyDetector.cs │ │ ├── SrCnnTransformBase.cs │ │ ├── SsaAnomalyDetectionBase.cs │ │ ├── SsaChangePointDetector.cs │ │ ├── SsaForecastingBase.cs │ │ ├── SsaSpikeDetector.cs │ │ ├── TimeSeriesProcessing.cs │ │ ├── TimeSeriesUtils.cs │ │ └── TrajectoryMatrix.cs │ ├── Microsoft.ML.Tokenizers/ │ │ ├── AssemblyInfo.cs │ │ ├── Directory.Build.props │ │ ├── EncodeResults.cs │ │ ├── EncodeSettings.cs │ │ ├── EncodedToken.cs │ │ ├── Microsoft.ML.Tokenizers.csproj │ │ ├── Model/ │ │ │ ├── BPETokenizer.cs │ │ │ ├── BertOptions.cs │ │ │ ├── BertTokenizer.cs │ │ │ ├── BpeOptions.cs │ │ │ ├── Cache.cs │ │ │ ├── CodeGenTokenizer.cs │ │ │ ├── EnglishRobertaTokenizer.cs │ │ │ ├── LlamaTokenizer.cs │ │ │ ├── Merge.cs │ │ │ ├── ModelSourceGenerationContext.cs │ │ │ ├── Pair.cs │ │ │ ├── Phi2Tokenizer.cs │ │ │ ├── SentencePieceBaseModel.cs │ │ │ ├── SentencePieceBpeModel.cs │ │ │ ├── SentencePieceTokenizer.cs │ │ │ ├── SentencePieceUnigramModel.cs │ │ │ ├── Symbol.cs │ │ │ ├── TiktokenTokenizer.cs │ │ │ ├── Word.cs │ │ │ ├── WordPieceOptions.cs │ │ │ └── WordPieceTokenizer.cs │ │ ├── Normalizer/ │ │ │ ├── BertNormalizer.cs │ │ │ ├── LowerCaseNormalizer.cs │ │ │ ├── Normalizer.cs │ │ │ ├── SentencePieceNormalizer.cs │ │ │ └── UpperCaseNormalizer.cs │ │ ├── PACKAGE.md │ │ ├── PreTokenizer/ │ │ │ ├── CompositePreTokenizer.cs │ │ │ ├── PreTokenizer.cs │ │ │ ├── RegexPreTokenizer.cs │ │ │ └── RobertaPreTokenizer.cs │ │ ├── SentencepieceModel.cs │ │ ├── Tokenizer.cs │ │ └── Utils/ │ │ ├── ByteArrayComparer.cs │ │ ├── BytePairEncoder.cs │ │ ├── ByteToUnicodeEncoding.cs │ │ ├── DoubleArrayTrie.cs │ │ ├── Helpers.cs │ │ ├── Helpers.netcoreapp.cs │ │ ├── Helpers.netstandard.cs │ │ ├── IListExtensions.cs │ │ ├── LruCache.cs │ │ ├── OrdinalUtf8StringComparer.cs │ │ ├── PriorityQueue.cs │ │ ├── StringSpanOrdinalKey.cs │ │ ├── TokenizerExtensions.cs │ │ ├── ValueStringBuilder.cs │ │ └── Vec.cs │ ├── Microsoft.ML.Tokenizers.Data.Cl100kBase/ │ │ ├── Cl100kBaseTokenizerData.cs │ │ ├── Data/ │ │ │ └── cl100k_base.tiktoken │ │ ├── Directory.Build.props │ │ ├── Microsoft.ML.Tokenizers.Data.Cl100kBase.csproj │ │ └── PACKAGE.md │ ├── Microsoft.ML.Tokenizers.Data.Gpt2/ │ │ ├── Data/ │ │ │ └── gpt2.tiktoken │ │ ├── Directory.Build.props │ │ ├── Gpt2TokenizerData.cs │ │ ├── Microsoft.ML.Tokenizers.Data.Gpt2.csproj │ │ └── PACKAGE.md │ ├── Microsoft.ML.Tokenizers.Data.O200kBase/ │ │ ├── Data/ │ │ │ └── o200k_base.tiktoken │ │ ├── Directory.Build.props │ │ ├── Microsoft.ML.Tokenizers.Data.O200kBase.csproj │ │ ├── O200kBaseTokenizerData.cs │ │ └── PACKAGE.md │ ├── Microsoft.ML.Tokenizers.Data.P50kBase/ │ │ ├── Data/ │ │ │ └── p50k_base.tiktoken │ │ ├── Directory.Build.props │ │ ├── Microsoft.ML.Tokenizers.Data.P50kBase.csproj │ │ ├── P50kBaseTokenizerData.cs │ │ └── PACKAGE.md │ ├── Microsoft.ML.Tokenizers.Data.R50kBase/ │ │ ├── Data/ │ │ │ └── r50k_base.tiktoken │ │ ├── Directory.Build.props │ │ ├── Microsoft.ML.Tokenizers.Data.R50kBase.csproj │ │ ├── PACKAGE.md │ │ └── R50kBaseTokenizerData.cs │ ├── Microsoft.ML.TorchSharp/ │ │ ├── AutoFormerV2/ │ │ │ ├── Anchors.cs │ │ │ ├── Attention.cs │ │ │ ├── AutoFormerV2Backbone.cs │ │ │ ├── AutoFormerV2Block.cs │ │ │ ├── AutoformerV2.cs │ │ │ ├── BasicLayer.cs │ │ │ ├── Conv2dBN.cs │ │ │ ├── ConvLayer.cs │ │ │ ├── ConvModule.cs │ │ │ ├── FPN.cs │ │ │ ├── MBConv.cs │ │ │ ├── Mlp.cs │ │ │ ├── ObjectDetectionMetrics.cs │ │ │ ├── ObjectDetectionTrainer.cs │ │ │ ├── PatchEmbed.cs │ │ │ ├── PatchMerging.cs │ │ │ └── RetinaHead.cs │ │ ├── Extensions/ │ │ │ ├── TensorExtensions.cs │ │ │ └── TokenizerExtensions.cs │ │ ├── Loss/ │ │ │ └── FocalLoss.cs │ │ ├── Microsoft.ML.TorchSharp.csproj │ │ ├── NasBert/ │ │ │ ├── BertArchitecture.cs │ │ │ ├── BertModelType.cs │ │ │ ├── BertTaskType.cs │ │ │ ├── Models/ │ │ │ │ ├── BaseHead.cs │ │ │ │ ├── BaseModel.cs │ │ │ │ ├── ModelPrediction.cs │ │ │ │ ├── NasBertEncoder.cs │ │ │ │ ├── NasBertModel.cs │ │ │ │ ├── NerModel.cs │ │ │ │ ├── PredictionHead.cs │ │ │ │ ├── SequenceLabelHead.cs │ │ │ │ └── TransformerEncoder.cs │ │ │ ├── Modules/ │ │ │ │ ├── ActivationFunction.cs │ │ │ │ ├── ConvSeparable.cs │ │ │ │ ├── EmbedTransfer.cs │ │ │ │ ├── Embedding/ │ │ │ │ │ ├── LearnedPositionalEmbedding.cs │ │ │ │ │ ├── PositionalEmbedding.cs │ │ │ │ │ └── SinusoidalPositionalEmbedding.cs │ │ │ │ ├── HiddenTransfer.cs │ │ │ │ ├── IncrementalState.cs │ │ │ │ ├── Layers/ │ │ │ │ │ ├── EncConvLayer.cs │ │ │ │ │ ├── FeedForwardLayer.cs │ │ │ │ │ ├── IdentityLayer.cs │ │ │ │ │ ├── Layer.cs │ │ │ │ │ └── SelfAttentionLayer.cs │ │ │ │ ├── MultiHeadAttention.cs │ │ │ │ ├── SearchSpace.cs │ │ │ │ └── TransformerCell.cs │ │ │ ├── NasBertTrainer.cs │ │ │ ├── NerTrainer.cs │ │ │ ├── Optimizers/ │ │ │ │ ├── Adam.cs │ │ │ │ └── BaseOptimizer.cs │ │ │ ├── SentenceSimilarityTrainer.cs │ │ │ └── TextClassificationTrainer.cs │ │ ├── Resources/ │ │ │ ├── dict.txt │ │ │ ├── encoder.json │ │ │ └── vocab.bpe │ │ ├── Roberta/ │ │ │ ├── Models/ │ │ │ │ ├── RobertaEncoder.cs │ │ │ │ ├── RobertaModel.cs │ │ │ │ └── RobertaModelForQA.cs │ │ │ ├── Modules/ │ │ │ │ ├── Attention.cs │ │ │ │ ├── AttentionOutput.cs │ │ │ │ ├── AttentionSelf.cs │ │ │ │ ├── Embeddings.cs │ │ │ │ ├── Encoder.cs │ │ │ │ ├── Intermediate.cs │ │ │ │ ├── Layer.cs │ │ │ │ └── Output.cs │ │ │ └── QATrainer.cs │ │ ├── TorchSharpBaseTrainer.cs │ │ ├── TorchSharpCatalog.cs │ │ └── Utils/ │ │ ├── DataUtils.cs │ │ ├── DefaultDictionary.cs │ │ ├── FileUtils.cs │ │ ├── HashHelpers.cs │ │ ├── ImageUtils.cs │ │ ├── IntrinsicAttribute.cs │ │ ├── MethodTable.cs │ │ ├── MetricUtils.cs │ │ ├── ModelUtils.cs │ │ ├── RangeUtil.cs │ │ └── TorchUtils.cs │ ├── Microsoft.ML.Transforms/ │ │ ├── CategoricalCatalog.cs │ │ ├── CompositeTransformer.cs │ │ ├── ConversionsCatalog.cs │ │ ├── CountFeatureSelection.cs │ │ ├── CustomMappingCatalog.cs │ │ ├── CustomMappingFactory.cs │ │ ├── CustomMappingFilter.cs │ │ ├── CustomMappingTransformer.cs │ │ ├── Dracula/ │ │ │ ├── CMCountTable.cs │ │ │ ├── CountTable.cs │ │ │ ├── CountTableBuilder.cs │ │ │ ├── CountTableTransformer.cs │ │ │ ├── CountTargetEncodingTransformer.cs │ │ │ ├── DictCountTable.cs │ │ │ ├── Featurizer.cs │ │ │ └── MultiCountTable.cs │ │ ├── EntryPoints/ │ │ │ ├── SelectFeatures.cs │ │ │ └── TextAnalytics.cs │ │ ├── Expression/ │ │ │ ├── BuiltinFunctions.cs │ │ │ ├── CharCursor.cs │ │ │ ├── CodeGen.cs │ │ │ ├── Error.cs │ │ │ ├── Exec.cs │ │ │ ├── FunctionProvider.cs │ │ │ ├── IlGeneratorExtensions.cs │ │ │ ├── KeyWordTable.cs │ │ │ ├── LambdaBinder.cs │ │ │ ├── LambdaParser.cs │ │ │ ├── LexCharUtils.cs │ │ │ ├── Lexer.cs │ │ │ ├── MethodGenerator.cs │ │ │ ├── Node.cs │ │ │ ├── Printer.cs │ │ │ ├── TokKind.cs │ │ │ ├── TokenCursor.cs │ │ │ └── Tokens.cs │ │ ├── ExpressionCatalog.cs │ │ ├── ExpressionTransformer.cs │ │ ├── ExtensionsCatalog.cs │ │ ├── FeatureSelectionCatalog.cs │ │ ├── FourierDistributionSampler.cs │ │ ├── GcnTransform.cs │ │ ├── GroupTransform.cs │ │ ├── HashJoiningTransform.cs │ │ ├── KernelCatalog.cs │ │ ├── KeyToVectorMapping.cs │ │ ├── LambdaTransform.cs │ │ ├── LearnerFeatureSelection.cs │ │ ├── LoadTransform.cs │ │ ├── MetricStatistics.cs │ │ ├── Microsoft.ML.Transforms.csproj │ │ ├── MissingValueDroppingTransformer.cs │ │ ├── MissingValueHandlingTransformer.cs │ │ ├── MissingValueIndicatorTransform.cs │ │ ├── MissingValueIndicatorTransformer.cs │ │ ├── MissingValueReplacing.cs │ │ ├── MissingValueReplacingUtils.cs │ │ ├── MutualInformationFeatureSelection.cs │ │ ├── NAHandling.cs │ │ ├── NormalizerCatalog.cs │ │ ├── OneHotEncoding.cs │ │ ├── OneHotHashEncoding.cs │ │ ├── OptionalColumnTransform.cs │ │ ├── PermutationFeatureImportance.cs │ │ ├── PermutationFeatureImportanceExtensions.cs │ │ ├── ProduceIdTransform.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── RandomFourierFeaturizing.cs │ │ ├── StatefulCustomMappingTransformer.cs │ │ ├── StatefulFilterTransform.cs │ │ ├── SvmLight/ │ │ │ ├── SvmLightLoader.cs │ │ │ ├── SvmLightLoaderSaverCatalog.cs │ │ │ └── SvmLightSaver.cs │ │ ├── Text/ │ │ │ ├── LdaSingleBox.cs │ │ │ ├── LdaTransform.cs │ │ │ ├── NgramHashingTransformer.cs │ │ │ ├── NgramTransform.cs │ │ │ ├── NgramUtils.cs │ │ │ ├── SentimentAnalyzingTransform.cs │ │ │ ├── StopWords/ │ │ │ │ ├── Arabic.txt │ │ │ │ ├── Czech.txt │ │ │ │ ├── Danish.txt │ │ │ │ ├── Dutch.txt │ │ │ │ ├── English.txt │ │ │ │ ├── French.txt │ │ │ │ ├── German.txt │ │ │ │ ├── Italian.txt │ │ │ │ ├── Japanese.txt │ │ │ │ ├── Norwegian_Bokmal.txt │ │ │ │ ├── Polish.txt │ │ │ │ ├── Portuguese.txt │ │ │ │ ├── Portuguese_Brazilian.txt │ │ │ │ ├── Russian.txt │ │ │ │ ├── Spanish.txt │ │ │ │ └── Swedish.txt │ │ │ ├── StopWordsRemovingTransformer.cs │ │ │ ├── TextCatalog.cs │ │ │ ├── TextFeaturizingEstimator.cs │ │ │ ├── TextNormalizing.cs │ │ │ ├── TokenizingByCharacters.cs │ │ │ ├── WordBagTransform.cs │ │ │ ├── WordEmbeddingsExtractor.cs │ │ │ ├── WordHashBagProducingTransform.cs │ │ │ ├── WordTokenizing.cs │ │ │ ├── WrappedTextTransformers.cs │ │ │ └── doc.xml │ │ ├── UngroupTransform.cs │ │ └── doc.xml │ ├── Microsoft.ML.Vision/ │ │ ├── DnnRetrainTransform.cs │ │ ├── ImageClassificationTrainer.cs │ │ ├── Microsoft.ML.Vision.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── VisionCatalog.cs │ ├── Native/ │ │ ├── CMakeLists.txt │ │ ├── CpuMathNative/ │ │ │ ├── CMakeLists.txt │ │ │ ├── FactorizationMachineCore.cpp │ │ │ ├── MathLinux.S │ │ │ └── Sse.cpp │ │ ├── FastTreeNative/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ExpandFloatType.cpp │ │ │ ├── FastTreeNative.cpp │ │ │ ├── ReadMe.txt │ │ │ ├── Sumup.h │ │ │ ├── SumupNibbles.h │ │ │ ├── SumupOneBit.h │ │ │ ├── SumupSegment.h │ │ │ ├── expand.h │ │ │ ├── getderivatives.cpp │ │ │ ├── getsurplusderivatives.cpp │ │ │ ├── segment.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── LdaNative/ │ │ │ ├── CMakeLists.txt │ │ │ ├── alias_multinomial_rng_int.cpp │ │ │ ├── alias_multinomial_rng_int.hpp │ │ │ ├── data_block.cpp │ │ │ ├── data_block.h │ │ │ ├── hybrid_alias_map.cpp │ │ │ ├── hybrid_alias_map.h │ │ │ ├── hybrid_map.cpp │ │ │ ├── hybrid_map.h │ │ │ ├── lda_document.cpp │ │ │ ├── lda_document.h │ │ │ ├── lda_engine.cpp │ │ │ ├── lda_engine.hpp │ │ │ ├── lda_engine_export.cpp │ │ │ ├── light_doc_sampler.cpp │ │ │ ├── light_doc_sampler.hpp │ │ │ ├── light_hash_map.cpp │ │ │ ├── light_hash_map.h │ │ │ ├── model_block.cpp │ │ │ ├── model_block.h │ │ │ ├── rand_int_rng.h │ │ │ ├── simple_barrier.h │ │ │ ├── timer.h │ │ │ ├── type_common.h │ │ │ ├── utils.cpp │ │ │ └── utils.hpp │ │ ├── MatrixFactorizationNative/ │ │ │ ├── CMakeLists.txt │ │ │ ├── UnmanagedMemory.cpp │ │ │ └── UnmanagedMemory.h │ │ ├── MklProxyNative/ │ │ │ ├── CMakeLists.txt │ │ │ └── MklProxyNative.cpp │ │ ├── Native.proj │ │ ├── OneDalNative/ │ │ │ ├── CMakeLists.txt │ │ │ └── OneDalAlgorithms.cpp │ │ ├── Stdafx.h │ │ ├── SymSgdNative/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Macros.h │ │ │ ├── SparseBLAS.h │ │ │ ├── SymSgdNative.cpp │ │ │ └── SymSgdNative.h │ │ ├── UnixSal.h │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── gen-buildsys-win.bat │ │ ├── newbuild.proj │ │ └── probe-win.ps1 │ ├── Redist/ │ │ └── build.proj │ ├── Sdl.Required.Warning.ruleset │ ├── Source.ruleset │ └── stylecop.json ├── test/ │ ├── BaselineOutput/ │ │ ├── Common/ │ │ │ ├── AveragedPerceptron/ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer-out.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer-rp.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-out.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-rp.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-out.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-rp.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-out.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-rp.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer-out.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-out.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-rp.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-out.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-rp.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-out.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-rp.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.txt │ │ │ │ ├── linux-arm/ │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration.txt │ │ │ │ │ └── AveragedPerceptron-TrainTest-breast-cancer.txt │ │ │ │ ├── linux-arm64/ │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration.txt │ │ │ │ │ └── AveragedPerceptron-TrainTest-breast-cancer.txt │ │ │ │ ├── netcoreapp/ │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-rp.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-rp.txt │ │ │ │ │ └── AveragedPerceptron-TrainTest-breast-cancer.nocalibration.txt │ │ │ │ ├── osx-arm64/ │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-out.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom.txt │ │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-out.txt │ │ │ │ │ └── AveragedPerceptron-TrainTest-breast-cancer.nocalibration.txt │ │ │ │ └── win-arm/ │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer-out.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer-rp.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-out.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration-rp.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.PAVcalibration.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-out.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom-rp.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.calibrateRandom.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-out.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration-rp.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.nocalibration.txt │ │ │ │ ├── AveragedPerceptron-CV-breast-cancer.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer-out.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-out.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration-rp.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.PAVcalibration.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-out.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom-rp.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.calibrateRandom.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-out.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration-rp.txt │ │ │ │ ├── AveragedPerceptron-TrainTest-breast-cancer.nocalibration.txt │ │ │ │ └── AveragedPerceptron-TrainTest-breast-cancer.txt │ │ │ ├── BinaryClassificationGamTrainer/ │ │ │ │ ├── BinaryClassificationGamTrainer-TrainTest-breast-cancer-out.txt │ │ │ │ ├── BinaryClassificationGamTrainer-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── BinaryClassificationGamTrainer-TrainTest-breast-cancer.txt │ │ │ │ ├── BinaryClassificationGamTrainerDiskTranspose-TrainTest-breast-cancer-out.txt │ │ │ │ ├── BinaryClassificationGamTrainerDiskTranspose-TrainTest-breast-cancer-rp.txt │ │ │ │ └── BinaryClassificationGamTrainerDiskTranspose-TrainTest-breast-cancer.txt │ │ │ ├── BinaryLoaderSaver/ │ │ │ │ └── OldKeyTypeCodecTest.txt │ │ │ ├── Categorical/ │ │ │ │ ├── featurized.tsv │ │ │ │ └── oneHot.tsv │ │ │ ├── CategoricalHash/ │ │ │ │ ├── featurized.tsv │ │ │ │ └── oneHotHash.tsv │ │ │ ├── Command/ │ │ │ │ ├── CommandCrossValidationKeyLabelWithFloatKeyValues-out.txt │ │ │ │ ├── CommandCrossValidationWithTextStratificationColumn-out.txt │ │ │ │ ├── CommandSaveDataSvmLight-data-0.txt │ │ │ │ ├── CommandSaveDataSvmLight-data.txt │ │ │ │ ├── CommandSaveDataSvmLight-out.txt │ │ │ │ ├── CommandShowDataSvmLight-1-out.txt │ │ │ │ ├── CommandShowDataSvmLight-2-out.txt │ │ │ │ ├── CommandShowDataSvmLight-3-out.txt │ │ │ │ ├── CommandShowDataSvmLight-4-out.txt │ │ │ │ ├── CommandShowDataSvmLight-5-out.txt │ │ │ │ ├── CommandShowDataSvmLight-out.txt │ │ │ │ ├── CommandShowSchemaModel-out.txt │ │ │ │ ├── CommandTrainMlrWithStats-1-out.txt │ │ │ │ ├── CommandTrainMlrWithStats-out.txt │ │ │ │ ├── CommandTrainMlrWithStats-summary.txt │ │ │ │ ├── CommandTrainRanking-1-out.txt │ │ │ │ ├── CommandTrainRanking-2-out.txt │ │ │ │ ├── CommandTrainRanking-3-metrics.txt │ │ │ │ ├── CommandTrainRanking-3-out.txt │ │ │ │ ├── CommandTrainRanking-4-out.txt │ │ │ │ ├── CommandTrainRanking-5-out.txt │ │ │ │ ├── CommandTrainRanking-data.txt │ │ │ │ ├── CommandTrainRanking-gsummary2.txt │ │ │ │ ├── CommandTrainRanking-out.txt │ │ │ │ ├── CommandTrainRanking-summary1.txt │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-1-out.txt │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-2-out.txt │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-3-metrics.txt │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-3-out.txt │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-4-out.txt │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-data.txt │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-out.txt │ │ │ │ ├── CommandTrainTestFCCAdult-1-out.txt │ │ │ │ ├── CommandTrainTestFCCAdult-metrics-fcc-str.txt │ │ │ │ ├── CommandTrainTestFCCAdult-metrics-fcc.txt │ │ │ │ ├── CommandTrainTestFCCAdult-out.txt │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithInitialization-1-out.txt │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithInitialization-out.txt │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithValidationAndInitialization-1-out.txt │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithValidationAndInitialization-out.txt │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithInitialization-1-out.txt │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithInitialization-out.txt │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithValidationAndInitialization-1-out.txt │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithValidationAndInitialization-out.txt │ │ │ │ ├── CommandTrainingLrWithStats-1-out.txt │ │ │ │ ├── CommandTrainingLrWithStats-out.txt │ │ │ │ ├── CommandTrainingLrWithStats-summary.txt │ │ │ │ ├── Datatypes-1-out.txt │ │ │ │ ├── Datatypes-2-out.txt │ │ │ │ ├── Datatypes-datatypes.txt │ │ │ │ ├── Datatypes-out.txt │ │ │ │ ├── EvaluateRankingWithMaml-out.txt │ │ │ │ ├── SavePipeChooseColumnsByIndex-1-out.txt │ │ │ │ ├── SavePipeChooseColumnsByIndex-out.txt │ │ │ │ ├── SavePipeChooseColumnsByIndexDrop-1-out.txt │ │ │ │ ├── SavePipeChooseColumnsByIndexDrop-out.txt │ │ │ │ ├── SavePipeTextLoaderWithMissingRealsAsNaNs-1-out.txt │ │ │ │ ├── SavePipeTextLoaderWithMissingRealsAsNaNs-out.txt │ │ │ │ ├── SavePipeTextLoaderWithMultilines-1-out.txt │ │ │ │ ├── SavePipeTextLoaderWithMultilines-out.txt │ │ │ │ ├── linux-arm/ │ │ │ │ │ ├── CommandCrossValidationKeyLabelWithFloatKeyValues-out.txt │ │ │ │ │ ├── CommandCrossValidationWithTextStratificationColumn-out.txt │ │ │ │ │ ├── CommandSaveDataSvmLight-data-0.txt │ │ │ │ │ ├── CommandSaveDataSvmLight-data.txt │ │ │ │ │ ├── CommandSaveDataSvmLight-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-1-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-2-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-3-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-4-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-5-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-out.txt │ │ │ │ │ ├── CommandShowSchemaModel-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-1-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-summary.txt │ │ │ │ │ ├── CommandTrainRanking-1-out.txt │ │ │ │ │ ├── CommandTrainRanking-2-out.txt │ │ │ │ │ ├── CommandTrainRanking-3-metrics.txt │ │ │ │ │ ├── CommandTrainRanking-3-out.txt │ │ │ │ │ ├── CommandTrainRanking-4-out.txt │ │ │ │ │ ├── CommandTrainRanking-5-out.txt │ │ │ │ │ ├── CommandTrainRanking-data.txt │ │ │ │ │ ├── CommandTrainRanking-gsummary2.txt │ │ │ │ │ ├── CommandTrainRanking-out.txt │ │ │ │ │ ├── CommandTrainRanking-summary1.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-1-out.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-2-out.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-3-metrics.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-3-out.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-4-out.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-data.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-out.txt │ │ │ │ │ ├── CommandTrainTestFCCAdult-1-out.txt │ │ │ │ │ ├── CommandTrainTestFCCAdult-metrics-fcc-str.txt │ │ │ │ │ ├── CommandTrainTestFCCAdult-metrics-fcc.txt │ │ │ │ │ ├── CommandTrainTestFCCAdult-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithInitialization-1-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithInitialization-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithValidationAndInitialization-1-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithValidationAndInitialization-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithInitialization-1-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithInitialization-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithValidationAndInitialization-1-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithValidationAndInitialization-out.txt │ │ │ │ │ ├── CommandTrainingLrWithStats-1-out.txt │ │ │ │ │ ├── CommandTrainingLrWithStats-out.txt │ │ │ │ │ ├── CommandTrainingLrWithStats-summary.txt │ │ │ │ │ ├── Datatypes-1-out.txt │ │ │ │ │ ├── Datatypes-2-out.txt │ │ │ │ │ ├── Datatypes-datatypes.txt │ │ │ │ │ ├── Datatypes-out.txt │ │ │ │ │ ├── EvaluateRankingWithMaml-out.txt │ │ │ │ │ ├── SavePipeChooseColumnsByIndex-1-out.txt │ │ │ │ │ ├── SavePipeChooseColumnsByIndex-out.txt │ │ │ │ │ ├── SavePipeChooseColumnsByIndexDrop-1-out.txt │ │ │ │ │ ├── SavePipeChooseColumnsByIndexDrop-out.txt │ │ │ │ │ ├── SavePipeTextLoaderWithMissingRealsAsNaNs-1-out.txt │ │ │ │ │ ├── SavePipeTextLoaderWithMissingRealsAsNaNs-out.txt │ │ │ │ │ ├── SavePipeTextLoaderWithMultilines-1-out.txt │ │ │ │ │ └── SavePipeTextLoaderWithMultilines-out.txt │ │ │ │ ├── linux-arm64/ │ │ │ │ │ ├── CommandCrossValidationKeyLabelWithFloatKeyValues-out.txt │ │ │ │ │ ├── CommandCrossValidationWithTextStratificationColumn-out.txt │ │ │ │ │ ├── CommandSaveDataSvmLight-data-0.txt │ │ │ │ │ ├── CommandSaveDataSvmLight-data.txt │ │ │ │ │ ├── CommandSaveDataSvmLight-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-1-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-2-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-3-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-4-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-5-out.txt │ │ │ │ │ ├── CommandShowDataSvmLight-out.txt │ │ │ │ │ ├── CommandShowSchemaModel-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-1-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-summary.txt │ │ │ │ │ ├── CommandTrainRanking-1-out.txt │ │ │ │ │ ├── CommandTrainRanking-2-out.txt │ │ │ │ │ ├── CommandTrainRanking-3-metrics.txt │ │ │ │ │ ├── CommandTrainRanking-3-out.txt │ │ │ │ │ ├── CommandTrainRanking-4-out.txt │ │ │ │ │ ├── CommandTrainRanking-5-out.txt │ │ │ │ │ ├── CommandTrainRanking-data.txt │ │ │ │ │ ├── CommandTrainRanking-gsummary2.txt │ │ │ │ │ ├── CommandTrainRanking-out.txt │ │ │ │ │ ├── CommandTrainRanking-summary1.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-1-out.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-2-out.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-3-metrics.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-3-out.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-4-out.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-data.txt │ │ │ │ │ ├── CommandTrainScoreEvaluateQuantileRegression-out.txt │ │ │ │ │ ├── CommandTrainTestFCCAdult-1-out.txt │ │ │ │ │ ├── CommandTrainTestFCCAdult-metrics-fcc-str.txt │ │ │ │ │ ├── CommandTrainTestFCCAdult-metrics-fcc.txt │ │ │ │ │ ├── CommandTrainTestFCCAdult-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithInitialization-1-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithInitialization-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithValidationAndInitialization-1-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFactorizationMachineWithValidationAndInitialization-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithInitialization-1-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithInitialization-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithValidationAndInitialization-1-out.txt │ │ │ │ │ ├── CommandTrainingBinaryFieldAwareFactorizationMachineWithValidationAndInitialization-out.txt │ │ │ │ │ ├── CommandTrainingLrWithStats-1-out.txt │ │ │ │ │ ├── CommandTrainingLrWithStats-out.txt │ │ │ │ │ ├── CommandTrainingLrWithStats-summary.txt │ │ │ │ │ ├── Datatypes-1-out.txt │ │ │ │ │ ├── Datatypes-2-out.txt │ │ │ │ │ ├── Datatypes-datatypes.txt │ │ │ │ │ ├── Datatypes-out.txt │ │ │ │ │ ├── EvaluateRankingWithMaml-out.txt │ │ │ │ │ ├── SavePipeChooseColumnsByIndex-1-out.txt │ │ │ │ │ ├── SavePipeChooseColumnsByIndex-out.txt │ │ │ │ │ ├── SavePipeChooseColumnsByIndexDrop-1-out.txt │ │ │ │ │ ├── SavePipeChooseColumnsByIndexDrop-out.txt │ │ │ │ │ ├── SavePipeTextLoaderWithMissingRealsAsNaNs-1-out.txt │ │ │ │ │ ├── SavePipeTextLoaderWithMissingRealsAsNaNs-out.txt │ │ │ │ │ ├── SavePipeTextLoaderWithMultilines-1-out.txt │ │ │ │ │ └── SavePipeTextLoaderWithMultilines-out.txt │ │ │ │ ├── netcoreapp/ │ │ │ │ │ ├── CommandTrainMlrWithStats-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-summary.txt │ │ │ │ │ └── CommandTrainingLrWithStats-out.txt │ │ │ │ ├── osx-arm64/ │ │ │ │ │ ├── CommandTrainMlrWithStats-1-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-summary.txt │ │ │ │ │ └── CommandTrainingLrWithStats-out.txt │ │ │ │ ├── win-arm/ │ │ │ │ │ ├── CommandTrainMlrWithStats-1-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-out.txt │ │ │ │ │ ├── CommandTrainMlrWithStats-summary.txt │ │ │ │ │ ├── CommandTrainingLrWithStats-1-out.txt │ │ │ │ │ ├── CommandTrainingLrWithStats-out.txt │ │ │ │ │ └── CommandTrainingLrWithStats-summary.txt │ │ │ │ └── win-x64/ │ │ │ │ ├── CommandTrainMlrWithStats-1-out.txt │ │ │ │ ├── CommandTrainMlrWithStats-out.txt │ │ │ │ └── CommandTrainMlrWithStats-summary.txt │ │ │ ├── EntryPoints/ │ │ │ │ ├── Summarize.txt │ │ │ │ ├── core_ep-list.tsv │ │ │ │ ├── core_manifest.json │ │ │ │ ├── ensemble-model0-stats.txt │ │ │ │ ├── ensemble-model0-summary.txt │ │ │ │ ├── ensemble-model1-summary.txt │ │ │ │ ├── ensemble-model2-stats.txt │ │ │ │ ├── ensemble-model2-summary.txt │ │ │ │ ├── ensemble-model3-summary.txt │ │ │ │ ├── ensemble-summary-key-value-pairs.txt │ │ │ │ ├── ensemble-summary.txt │ │ │ │ ├── linux-arm/ │ │ │ │ │ └── Summarize.txt │ │ │ │ ├── lr-stats.txt │ │ │ │ ├── lr-weights.txt │ │ │ │ ├── mc-lr-stats.txt │ │ │ │ ├── mc-lr-weights.txt │ │ │ │ ├── netcoreapp/ │ │ │ │ │ └── core_manifest.json │ │ │ │ └── pca-weights.txt │ │ │ ├── ExprParser/ │ │ │ │ ├── ExprBindExOutput.txt │ │ │ │ ├── ExprBindOutput.txt │ │ │ │ ├── ExprCodeGenOutput.txt │ │ │ │ ├── ExprEvalOutput.txt │ │ │ │ └── ExprParseOutput.txt │ │ │ ├── FastForestClassification/ │ │ │ │ ├── FastForestClassification-CV-breast-cancer-out.txt │ │ │ │ ├── FastForestClassification-CV-breast-cancer-rp.txt │ │ │ │ ├── FastForestClassification-CV-breast-cancer.txt │ │ │ │ ├── FastForestClassification-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastForestClassification-TrainTest-breast-cancer-rp.txt │ │ │ │ └── FastForestClassification-TrainTest-breast-cancer.txt │ │ │ ├── FastForestRegression/ │ │ │ │ ├── FastForestRegression-CV-housing-out.txt │ │ │ │ ├── FastForestRegression-CV-housing-rp.txt │ │ │ │ ├── FastForestRegression-CV-housing.txt │ │ │ │ ├── FastForestRegression-TrainTest-housing-out.txt │ │ │ │ ├── FastForestRegression-TrainTest-housing-rp.txt │ │ │ │ ├── FastForestRegression-TrainTest-housing.txt │ │ │ │ ├── QuantileRegressorTester-CV-housing-out.txt │ │ │ │ ├── QuantileRegressorTester-CV-housing-rp.txt │ │ │ │ ├── QuantileRegressorTester-CV-housing.txt │ │ │ │ ├── QuantileRegressorTester-TrainTest-housing-out.txt │ │ │ │ ├── QuantileRegressorTester-TrainTest-housing-rp.txt │ │ │ │ └── QuantileRegressorTester-TrainTest-housing.txt │ │ │ ├── FastRank/ │ │ │ │ ├── FastRank-CV-MSM-sparse-sample-out.txt │ │ │ │ ├── FastRank-CV-MSM-sparse-sample-rp.txt │ │ │ │ ├── FastRank-CV-breast-cancer-out.txt │ │ │ │ ├── FastRank-CV-breast-cancer-rp.txt │ │ │ │ ├── FastRank-CV-breast-cancer.txt │ │ │ │ ├── FastRank-TrainTest-MSM-sparse-sample-out.txt │ │ │ │ ├── FastRank-TrainTest-MSM-sparse-sample-rp.txt │ │ │ │ ├── FastRank-TrainTest-MSM-sparse-sample-test-out.txt │ │ │ │ ├── FastRank-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastRank-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastRank-TrainTest-breast-cancer.txt │ │ │ │ └── prcurve-breast-cancer-prcurve.txt │ │ │ ├── FastTreeBinaryClassification/ │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat-out.txt │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat-rp.txt │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat-summary.txt │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat.ini │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat.txt │ │ │ │ ├── FastTree-TrainTest-Census.Cat-out.txt │ │ │ │ ├── FastTree-TrainTest-Census.Cat-rp.txt │ │ │ │ ├── FastTree-TrainTest-Census.Cat-summary.txt │ │ │ │ ├── FastTree-TrainTest-Census.Cat.ini │ │ │ │ ├── FastTree-TrainTest-Census.Cat.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-group-out.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-group-rp.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-group.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer.txt │ │ │ │ ├── FastTreeBsr-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTreeBsr-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastTreeBsr-TrainTest-breast-cancer.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat-out.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat-rp.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat-summary.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat.ini │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat-out.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat-rp.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat-summary.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat.ini │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat-out.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat-rp.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat-summary.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat.ini │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat-out.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat-rp.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat-summary.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat.ini │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat-out.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat-rp.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat-summary.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat.ini │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat-out.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat-rp.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat-summary.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat.ini │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat.txt │ │ │ │ ├── FastTreeDisk-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTreeDisk-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastTreeDisk-TrainTest-breast-cancer.txt │ │ │ │ ├── FastTreeDrop-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTreeDrop-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastTreeDrop-TrainTest-breast-cancer.txt │ │ │ │ ├── FastTreeHighMinDocs-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTreeHighMinDocs-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastTreeHighMinDocs-TrainTest-breast-cancer.txt │ │ │ │ └── win-x86/ │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat-out.txt │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat-rp.txt │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat-summary.txt │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat.ini │ │ │ │ ├── FastTree-TrainTest-Census-Cat-Only.Cat.txt │ │ │ │ ├── FastTree-TrainTest-Census.Cat-out.txt │ │ │ │ ├── FastTree-TrainTest-Census.Cat-rp.txt │ │ │ │ ├── FastTree-TrainTest-Census.Cat-summary.txt │ │ │ │ ├── FastTree-TrainTest-Census.Cat.ini │ │ │ │ ├── FastTree-TrainTest-Census.Cat.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-group-out.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-group-rp.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-group.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastTree-TrainTest-breast-cancer.txt │ │ │ │ ├── FastTreeBsr-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTreeBsr-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastTreeBsr-TrainTest-breast-cancer.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat-out.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat-rp.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat-summary.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat.ini │ │ │ │ ├── FastTreeCategorical-TrainTest-Census-Cat-Only.Cat.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat-out.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat-rp.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat-summary.txt │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat.ini │ │ │ │ ├── FastTreeCategorical-TrainTest-Census.Cat.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat-out.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat-rp.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat-summary.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat.ini │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census-Cat-Only.Cat.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat-out.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat-rp.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat-summary.txt │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat.ini │ │ │ │ ├── FastTreeCategoricalDisk-TrainTest-Census.Cat.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat-out.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat-rp.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat-summary.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat.ini │ │ │ │ ├── FastTreeDisk-TrainTest-Census-Cat-Only.Cat.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat-out.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat-rp.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat-summary.txt │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat.ini │ │ │ │ ├── FastTreeDisk-TrainTest-Census.Cat.txt │ │ │ │ ├── FastTreeDisk-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTreeDisk-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastTreeDisk-TrainTest-breast-cancer.txt │ │ │ │ ├── FastTreeDrop-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTreeDrop-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── FastTreeDrop-TrainTest-breast-cancer.txt │ │ │ │ ├── FastTreeHighMinDocs-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FastTreeHighMinDocs-TrainTest-breast-cancer-rp.txt │ │ │ │ └── FastTreeHighMinDocs-TrainTest-breast-cancer.txt │ │ │ ├── FeatureContribution/ │ │ │ │ ├── AveragePerceptronBinary.tsv │ │ │ │ ├── FastForestBinary.tsv │ │ │ │ ├── FastForestRegression.tsv │ │ │ │ ├── FastTreeBinary.tsv │ │ │ │ ├── FastTreeRanking.tsv │ │ │ │ ├── FastTreeRegression.tsv │ │ │ │ ├── FastTreeTweedieRegression.tsv │ │ │ │ ├── GAMBinary.tsv │ │ │ │ ├── GAMRegression.tsv │ │ │ │ ├── LeastSquaresRegression.tsv │ │ │ │ ├── LightGbmBinary.tsv │ │ │ │ ├── LightGbmRanking.tsv │ │ │ │ ├── LightGbmRegression.tsv │ │ │ │ ├── LightGbmRegressionWithCategoricalSplit.tsv │ │ │ │ ├── LogisticRegressionBinary.tsv │ │ │ │ ├── OnlineGradientDescentRegression.tsv │ │ │ │ ├── PoissonRegression.tsv │ │ │ │ ├── SDCABinary.tsv │ │ │ │ ├── SDCARegression.tsv │ │ │ │ ├── SGDBinary.tsv │ │ │ │ ├── SSGDBinary.tsv │ │ │ │ ├── SVMBinary.tsv │ │ │ │ ├── linux-arm/ │ │ │ │ │ └── SDCARegression.tsv │ │ │ │ └── netcoreapp/ │ │ │ │ └── SDCARegression.tsv │ │ │ ├── FeatureSelection/ │ │ │ │ ├── countFeatureSelect.tsv │ │ │ │ ├── dropslots.tsv │ │ │ │ ├── featureselection.tsv │ │ │ │ └── mutualFeatureSelect.tsv │ │ │ ├── FieldAwareFactorizationMachine/ │ │ │ │ ├── FieldAwareFactorizationMachine-CV-breast-cancer-out.txt │ │ │ │ ├── FieldAwareFactorizationMachine-CV-breast-cancer-rp.txt │ │ │ │ ├── FieldAwareFactorizationMachine-CV-breast-cancer.txt │ │ │ │ ├── FieldAwareFactorizationMachine-TrainTest-breast-cancer-out.txt │ │ │ │ ├── FieldAwareFactorizationMachine-TrainTest-breast-cancer-rp.txt │ │ │ │ └── FieldAwareFactorizationMachine-TrainTest-breast-cancer.txt │ │ │ ├── Inference/ │ │ │ │ ├── dataset-infer-recipe-result-00.txt │ │ │ │ └── dataset-infer-schema-result-00.txt │ │ │ ├── KeyToValue/ │ │ │ │ └── featurized.tsv │ │ │ ├── LdSvm/ │ │ │ │ ├── LDSVM-def-CV-breast-cancer-out.txt │ │ │ │ ├── LDSVM-def-CV-breast-cancer-rp.txt │ │ │ │ ├── LDSVM-def-CV-breast-cancer.txt │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer.txt │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-out.txt │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-rp.txt │ │ │ │ ├── LDSVM-nob-CV-breast-cancer.txt │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer.txt │ │ │ │ ├── linux-arm/ │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer.txt │ │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-rp.txt │ │ │ │ │ └── LDSVM-nob-TrainTest-breast-cancer.txt │ │ │ │ ├── linux-arm64/ │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer.txt │ │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-rp.txt │ │ │ │ │ └── LDSVM-nob-TrainTest-breast-cancer.txt │ │ │ │ ├── netcoreapp/ │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer.txt │ │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-rp.txt │ │ │ │ │ └── LDSVM-nob-TrainTest-breast-cancer.txt │ │ │ │ ├── osx-arm64/ │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-def-CV-breast-cancer.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-out.txt │ │ │ │ │ ├── LDSVM-nob-CV-breast-cancer.txt │ │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-out.txt │ │ │ │ │ └── LDSVM-nob-TrainTest-breast-cancer.txt │ │ │ │ └── win-arm/ │ │ │ │ ├── LDSVM-def-CV-breast-cancer-out.txt │ │ │ │ ├── LDSVM-def-CV-breast-cancer-rp.txt │ │ │ │ ├── LDSVM-def-CV-breast-cancer.txt │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LDSVM-def-TrainTest-breast-cancer.txt │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-out.txt │ │ │ │ ├── LDSVM-nob-CV-breast-cancer-rp.txt │ │ │ │ ├── LDSVM-nob-CV-breast-cancer.txt │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LDSVM-nob-TrainTest-breast-cancer-rp.txt │ │ │ │ └── LDSVM-nob-TrainTest-breast-cancer.txt │ │ │ ├── LightGBM/ │ │ │ │ ├── LightGBMDart-CV-breast-cancer.dart-out.txt │ │ │ │ ├── LightGBMDart-CV-breast-cancer.dart-rp.txt │ │ │ │ ├── LightGBMDart-CV-breast-cancer.dart.txt │ │ │ │ ├── LightGBMDart-TrainTest-breast-cancer.dart-out.txt │ │ │ │ ├── LightGBMDart-TrainTest-breast-cancer.dart-rp.txt │ │ │ │ ├── LightGBMDart-TrainTest-breast-cancer.dart.txt │ │ │ │ ├── LightGBMGoss-CV-breast-cancer.goss-out.txt │ │ │ │ ├── LightGBMGoss-CV-breast-cancer.goss-rp.txt │ │ │ │ ├── LightGBMGoss-CV-breast-cancer.goss.txt │ │ │ │ ├── LightGBMGoss-TrainTest-breast-cancer.goss-out.txt │ │ │ │ ├── LightGBMGoss-TrainTest-breast-cancer.goss-rp.txt │ │ │ │ └── LightGBMGoss-TrainTest-breast-cancer.goss.txt │ │ │ ├── LightGBMBinary/ │ │ │ │ ├── LightGBM-Test-breast-cancer-out.txt │ │ │ │ ├── LightGBM-Test-breast-cancer.txt │ │ │ │ ├── LightGBM-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LightGBM-TrainTest-breast-cancer-rp.txt │ │ │ │ └── LightGBM-TrainTest-breast-cancer.txt │ │ │ ├── LightGBMMC/ │ │ │ │ ├── LightGBMMC-CV-iris.key-out.txt │ │ │ │ ├── LightGBMMC-CV-iris.key-rp.txt │ │ │ │ ├── LightGBMMC-CV-iris.key.txt │ │ │ │ ├── LightGBMMC-CV-iris.keyU404-out.txt │ │ │ │ ├── LightGBMMC-CV-iris.keyU404-rp.txt │ │ │ │ ├── LightGBMMC-CV-iris.keyU404.txt │ │ │ │ ├── LightGBMMC-TrainTest-iris.key-out.txt │ │ │ │ ├── LightGBMMC-TrainTest-iris.key-rp.txt │ │ │ │ ├── LightGBMMC-TrainTest-iris.key.txt │ │ │ │ ├── LightGBMMC-TrainTest-iris.keyU404-out.txt │ │ │ │ ├── LightGBMMC-TrainTest-iris.keyU404-rp.txt │ │ │ │ └── LightGBMMC-TrainTest-iris.keyU404.txt │ │ │ ├── LightGBMR/ │ │ │ │ ├── LightGBMReg-CV-generatedRegressionDataset-out.txt │ │ │ │ ├── LightGBMReg-CV-generatedRegressionDataset-rp.txt │ │ │ │ ├── LightGBMReg-CV-generatedRegressionDataset.txt │ │ │ │ ├── LightGBMReg-TrainTest-generatedRegressionDataset-out.txt │ │ │ │ ├── LightGBMReg-TrainTest-generatedRegressionDataset-rp.txt │ │ │ │ ├── LightGBMReg-TrainTest-generatedRegressionDataset.txt │ │ │ │ ├── LightGBMRegMae-CV-generatedRegressionDataset.MAE-out.txt │ │ │ │ ├── LightGBMRegMae-CV-generatedRegressionDataset.MAE-rp.txt │ │ │ │ ├── LightGBMRegMae-CV-generatedRegressionDataset.MAE.txt │ │ │ │ ├── LightGBMRegMae-TrainTest-generatedRegressionDataset.MAE-out.txt │ │ │ │ ├── LightGBMRegMae-TrainTest-generatedRegressionDataset.MAE-rp.txt │ │ │ │ ├── LightGBMRegMae-TrainTest-generatedRegressionDataset.MAE.txt │ │ │ │ ├── LightGBMRegRmse-CV-generatedRegressionDataset.RMSE-out.txt │ │ │ │ ├── LightGBMRegRmse-CV-generatedRegressionDataset.RMSE-rp.txt │ │ │ │ ├── LightGBMRegRmse-CV-generatedRegressionDataset.RMSE.txt │ │ │ │ ├── LightGBMRegRmse-TrainTest-generatedRegressionDataset.RMSE-out.txt │ │ │ │ ├── LightGBMRegRmse-TrainTest-generatedRegressionDataset.RMSE-rp.txt │ │ │ │ └── LightGBMRegRmse-TrainTest-generatedRegressionDataset.RMSE.txt │ │ │ ├── LinearSVM/ │ │ │ │ ├── LinearSVM-CV-breast-cancer.PAVcalibration-out.txt │ │ │ │ ├── LinearSVM-CV-breast-cancer.PAVcalibration-rp.txt │ │ │ │ ├── LinearSVM-CV-breast-cancer.PAVcalibration.txt │ │ │ │ ├── LinearSVM-CV-breast-cancer.nocalibration-out.txt │ │ │ │ ├── LinearSVM-CV-breast-cancer.nocalibration-rp.txt │ │ │ │ ├── LinearSVM-CV-breast-cancer.nocalibration.txt │ │ │ │ ├── LinearSVM-TrainTest-breast-cancer.PAVcalibration-out.txt │ │ │ │ ├── LinearSVM-TrainTest-breast-cancer.PAVcalibration-rp.txt │ │ │ │ ├── LinearSVM-TrainTest-breast-cancer.PAVcalibration.txt │ │ │ │ ├── LinearSVM-TrainTest-breast-cancer.nocalibration-out.txt │ │ │ │ ├── LinearSVM-TrainTest-breast-cancer.nocalibration-rp.txt │ │ │ │ └── LinearSVM-TrainTest-breast-cancer.nocalibration.txt │ │ │ ├── LogisticRegression/ │ │ │ │ ├── LogisticRegression-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold-out.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold-rp.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-summary.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold-out.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold-rp.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold.txt │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer.txt │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer.txt │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-norm-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-norm-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-norm-TrainTest-breast-cancer.txt │ │ │ │ ├── linux-arm/ │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold-out.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold-rp.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-summary.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold-out.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold-rp.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-norm-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-norm-TrainTest-breast-cancer-rp.txt │ │ │ │ │ └── LogisticRegression-norm-TrainTest-breast-cancer.txt │ │ │ │ ├── linux-arm64/ │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold-out.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold-rp.txt │ │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-summary.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold-out.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold-rp.txt │ │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-norm-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-norm-TrainTest-breast-cancer-rp.txt │ │ │ │ │ └── LogisticRegression-norm-TrainTest-breast-cancer.txt │ │ │ │ ├── netcoreapp/ │ │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-rp.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-out.txt │ │ │ │ │ └── LogisticRegression-non-negative-TrainTest-breast-cancer.txt │ │ │ │ ├── osx-arm64/ │ │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-out.txt │ │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer.txt │ │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-out.txt │ │ │ │ │ └── LogisticRegression-non-negative-TrainTest-breast-cancer.txt │ │ │ │ └── win-arm/ │ │ │ │ ├── LogisticRegression-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold-out.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold-rp.txt │ │ │ │ ├── LogisticRegression-CV-breast-cancer.withThreshold.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-GaussianNorm-TrainTest-breast-cancer.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer-summary.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold-out.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold-rp.txt │ │ │ │ ├── LogisticRegression-TrainTest-breast-cancer.withThreshold.txt │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-bin-norm-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-bin-norm-TrainTest-breast-cancer.txt │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-non-negative-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-non-negative-TrainTest-breast-cancer.txt │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer-rp.txt │ │ │ │ ├── LogisticRegression-norm-CV-breast-cancer.txt │ │ │ │ ├── LogisticRegression-norm-TrainTest-breast-cancer-out.txt │ │ │ │ ├── LogisticRegression-norm-TrainTest-breast-cancer-rp.txt │ │ │ │ └── LogisticRegression-norm-TrainTest-breast-cancer.txt │ │ │ ├── MultiClassNaiveBayes/ │ │ │ │ ├── MultiClassNaiveBayes-CV-breast-cancer-out.txt │ │ │ │ ├── MultiClassNaiveBayes-CV-breast-cancer-rp.txt │ │ │ │ ├── MultiClassNaiveBayes-CV-breast-cancer.txt │ │ │ │ ├── MultiClassNaiveBayes-TrainTest-breast-cancer-out.txt │ │ │ │ ├── MultiClassNaiveBayes-TrainTest-breast-cancer-rp.txt │ │ │ │ └── MultiClassNaiveBayes-TrainTest-breast-cancer.txt │ │ │ ├── MulticlassLogisticRegression/ │ │ │ │ ├── LogisticRegression-Non-Negative-CV-iris-out.txt │ │ │ │ ├── LogisticRegression-Non-Negative-CV-iris-rp.txt │ │ │ │ ├── LogisticRegression-Non-Negative-CV-iris.txt │ │ │ │ ├── LogisticRegression-Non-Negative-TrainTest-iris-out.txt │ │ │ │ ├── LogisticRegression-Non-Negative-TrainTest-iris-rp.txt │ │ │ │ ├── LogisticRegression-Non-Negative-TrainTest-iris.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-out.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-rp.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-tree-featurized-out.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-tree-featurized-permuted-out.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-tree-featurized-permuted-rp.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-tree-featurized-permuted.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-tree-featurized-rp.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-tree-featurized.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris-out.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris-rp.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris-tree-featurized-out.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris-tree-featurized-permuted-out.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris-tree-featurized-permuted-rp.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris-tree-featurized-permuted.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris-tree-featurized-rp.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris-tree-featurized.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris.txt │ │ │ │ ├── linux-arm/ │ │ │ │ │ ├── LogisticRegression-Non-Negative-TrainTest-iris-out.txt │ │ │ │ │ └── LogisticRegression-Non-Negative-TrainTest-iris.txt │ │ │ │ ├── netcoreapp/ │ │ │ │ │ ├── LogisticRegression-Non-Negative-CV-iris.txt │ │ │ │ │ ├── LogisticRegression-Non-Negative-TrainTest-iris-out.txt │ │ │ │ │ ├── LogisticRegression-Non-Negative-TrainTest-iris-rp.txt │ │ │ │ │ ├── LogisticRegression-Non-Negative-TrainTest-iris.txt │ │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-out.txt │ │ │ │ │ ├── MulticlassLogisticRegression-CV-iris.txt │ │ │ │ │ └── MulticlassLogisticRegression-TrainTest-iris.txt │ │ │ │ └── osx-arm64/ │ │ │ │ ├── LogisticRegression-Non-Negative-CV-iris-out.txt │ │ │ │ ├── LogisticRegression-Non-Negative-CV-iris.txt │ │ │ │ ├── LogisticRegression-Non-Negative-TrainTest-iris.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris-out.txt │ │ │ │ ├── MulticlassLogisticRegression-CV-iris.txt │ │ │ │ ├── MulticlassLogisticRegression-TrainTest-iris-out.txt │ │ │ │ └── MulticlassLogisticRegression-TrainTest-iris.txt │ │ │ ├── NAIndicator/ │ │ │ │ └── featurized.tsv │ │ │ ├── NAReplace/ │ │ │ │ └── featurized.tsv │ │ │ ├── NormalizerEstimator/ │ │ │ │ ├── gcnNorm.tsv │ │ │ │ ├── lpNorm.tsv │ │ │ │ ├── lpnorm_gcnorm_whitened.tsv │ │ │ │ ├── normalized.tsv │ │ │ │ ├── normalizedBackwardsCompat.tsv │ │ │ │ └── whitened.tsv │ │ │ ├── OLS/ │ │ │ │ ├── OLS-TrainTest-generatedRegressionDataset-out.txt │ │ │ │ ├── OLS-TrainTest-generatedRegressionDataset-rp.txt │ │ │ │ └── OLS-TrainTest-generatedRegressionDataset.txt │ │ │ ├── OVA/ │ │ │ │ ├── OVA-CV-iris-out.txt │ │ │ │ ├── OVA-CV-iris-rp.txt │ │ │ │ ├── OVA-CV-iris.txt │ │ │ │ ├── OVA-FastForest-CV-iris-out.txt │ │ │ │ ├── OVA-FastForest-CV-iris-rp.txt │ │ │ │ ├── OVA-FastForest-CV-iris.txt │ │ │ │ ├── OVA-FastForest-TrainTest-iris-out.txt │ │ │ │ ├── OVA-FastForest-TrainTest-iris-rp.txt │ │ │ │ ├── OVA-FastForest-TrainTest-iris.txt │ │ │ │ ├── OVA-TrainTest-iris-out.txt │ │ │ │ ├── OVA-TrainTest-iris-rp.txt │ │ │ │ └── OVA-TrainTest-iris.txt │ │ │ ├── Onnx/ │ │ │ │ ├── BinaryClassification/ │ │ │ │ │ └── BreastCancer/ │ │ │ │ │ ├── ExcludeVariablesInOnnxConversion.txt │ │ │ │ │ ├── KeyToVector.txt │ │ │ │ │ ├── LightGbmBinaryClassificationOnnxConversionTest.txt │ │ │ │ │ ├── LogisticRegressionSaveModelToOnnxTest.txt │ │ │ │ │ └── ModelWithLessIO.txt │ │ │ │ ├── Cluster/ │ │ │ │ │ └── BreastCancer/ │ │ │ │ │ └── Kmeans.txt │ │ │ │ ├── MultiClassClassification/ │ │ │ │ │ └── BreastCancer/ │ │ │ │ │ ├── MultiClassificationLogisticRegressionSaveModelToOnnxTest.onnx │ │ │ │ │ └── MultiClassificationLogisticRegressionSaveModelToOnnxTest.txt │ │ │ │ ├── Regression/ │ │ │ │ │ └── Adult/ │ │ │ │ │ ├── Microsoft.ML.Trainers.FastTree.FastForestRegressionTrainer.txt │ │ │ │ │ ├── Microsoft.ML.Trainers.FastTree.FastTreeRegressionTrainer.txt │ │ │ │ │ ├── Microsoft.ML.Trainers.FastTree.FastTreeTweedieTrainer.txt │ │ │ │ │ ├── Microsoft.ML.Trainers.LbfgsPoissonRegressionTrainer.txt │ │ │ │ │ ├── Microsoft.ML.Trainers.LightGbm.LightGbmRegressionTrainer.txt │ │ │ │ │ ├── Microsoft.ML.Trainers.OlsTrainer.txt │ │ │ │ │ ├── Microsoft.ML.Trainers.OnlineGradientDescentTrainer.txt │ │ │ │ │ ├── Microsoft.ML.Trainers.SdcaRegressionTrainer.txt │ │ │ │ │ └── SimplePipeline.txt │ │ │ │ └── Transforms/ │ │ │ │ ├── IndicateMissingValues.txt │ │ │ │ ├── SelectColumns.txt │ │ │ │ └── Sentiment/ │ │ │ │ └── SmallWordEmbed.txt │ │ │ ├── PCA/ │ │ │ │ └── pca.tsv │ │ │ ├── PKPD/ │ │ │ │ ├── PKPD-CV-iris-out.txt │ │ │ │ ├── PKPD-CV-iris-rp.txt │ │ │ │ ├── PKPD-CV-iris.txt │ │ │ │ ├── PKPD-TrainTest-iris-out.txt │ │ │ │ ├── PKPD-TrainTest-iris-rp.txt │ │ │ │ └── PKPD-TrainTest-iris.txt │ │ │ ├── PriorPredictor/ │ │ │ │ ├── BinaryPrior-CV-breast-cancer-out.txt │ │ │ │ ├── BinaryPrior-CV-breast-cancer-rp.txt │ │ │ │ ├── BinaryPrior-CV-breast-cancer.txt │ │ │ │ ├── BinaryPrior-TrainTest-breast-cancer-out.txt │ │ │ │ ├── BinaryPrior-TrainTest-breast-cancer-rp.txt │ │ │ │ └── BinaryPrior-TrainTest-breast-cancer.txt │ │ │ ├── RandomPredictor/ │ │ │ │ ├── BinaryRandom-CV-breast-cancer-out.txt │ │ │ │ ├── BinaryRandom-CV-breast-cancer-rp.txt │ │ │ │ ├── BinaryRandom-CV-breast-cancer.txt │ │ │ │ ├── BinaryRandom-TrainTest-breast-cancer-out.txt │ │ │ │ ├── BinaryRandom-TrainTest-breast-cancer-rp.txt │ │ │ │ └── BinaryRandom-TrainTest-breast-cancer.txt │ │ │ ├── Rff/ │ │ │ │ └── featurized.tsv │ │ │ ├── SDCA/ │ │ │ │ ├── BinarySDCA-CV-breast-cancer-out.txt │ │ │ │ ├── BinarySDCA-CV-breast-cancer-rp.txt │ │ │ │ ├── BinarySDCA-CV-breast-cancer.txt │ │ │ │ ├── BinarySDCA-L1-CV-breast-cancer-out.txt │ │ │ │ ├── BinarySDCA-L1-CV-breast-cancer-rp.txt │ │ │ │ ├── BinarySDCA-L1-CV-breast-cancer.txt │ │ │ │ ├── BinarySDCA-L1-TrainTest-breast-cancer-out.txt │ │ │ │ ├── BinarySDCA-L1-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── BinarySDCA-L1-TrainTest-breast-cancer.txt │ │ │ │ ├── BinarySDCA-SmoothedHinge-CV-breast-cancer-out.txt │ │ │ │ ├── BinarySDCA-SmoothedHinge-CV-breast-cancer-rp.txt │ │ │ │ ├── BinarySDCA-SmoothedHinge-CV-breast-cancer.txt │ │ │ │ ├── BinarySDCA-SmoothedHinge-TrainTest-breast-cancer-out.txt │ │ │ │ ├── BinarySDCA-SmoothedHinge-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── BinarySDCA-SmoothedHinge-TrainTest-breast-cancer.txt │ │ │ │ ├── BinarySDCA-TrainTest-breast-cancer-out.txt │ │ │ │ ├── BinarySDCA-TrainTest-breast-cancer-rp.txt │ │ │ │ └── BinarySDCA-TrainTest-breast-cancer.txt │ │ │ ├── SGD/ │ │ │ │ ├── BinarySGD-CV-breast-cancer-out.txt │ │ │ │ ├── BinarySGD-CV-breast-cancer-rp.txt │ │ │ │ ├── BinarySGD-CV-breast-cancer.txt │ │ │ │ ├── BinarySGD-Hinge-CV-breast-cancer-out.txt │ │ │ │ ├── BinarySGD-Hinge-CV-breast-cancer-rp.txt │ │ │ │ ├── BinarySGD-Hinge-CV-breast-cancer.txt │ │ │ │ ├── BinarySGD-Hinge-TrainTest-breast-cancer-out.txt │ │ │ │ ├── BinarySGD-Hinge-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── BinarySGD-Hinge-TrainTest-breast-cancer.txt │ │ │ │ ├── BinarySGD-TrainTest-breast-cancer-out.txt │ │ │ │ ├── BinarySGD-TrainTest-breast-cancer-rp.txt │ │ │ │ └── BinarySGD-TrainTest-breast-cancer.txt │ │ │ ├── SavePipe/ │ │ │ │ ├── ArrayDataViewBuilder-Data.txt │ │ │ │ ├── ArrayDataViewBuilderNoHeader-Data.txt │ │ │ │ ├── ArrayDataViewBuilderNoRows-Data.txt │ │ │ │ ├── ArrayDataViewBuilderNoSchema-Data.txt │ │ │ │ ├── ArrayDataViewBuilderNoSchemaNoHeader-Data.txt │ │ │ │ ├── PartitionedNamedDirectories-Data.txt │ │ │ │ ├── PartitionedNamedDirectories-Schema.txt │ │ │ │ ├── PartitionedUnnamedDirectories-Data.txt │ │ │ │ ├── PartitionedUnnamedDirectories-Schema.txt │ │ │ │ ├── SavePipeCat-Data.txt │ │ │ │ ├── SavePipeCat-Schema.txt │ │ │ │ ├── SavePipeConcatUnknownLength-Data.txt │ │ │ │ ├── SavePipeConcatUnknownLength-Schema.txt │ │ │ │ ├── SavePipeConcatWithAliases-Data.txt │ │ │ │ ├── SavePipeConcatWithAliases-Schema.txt │ │ │ │ ├── SavePipeCountSelect-Data.txt │ │ │ │ ├── SavePipeCountSelect-Schema.txt │ │ │ │ ├── SavePipeCountTable-Data.txt │ │ │ │ ├── SavePipeCountTable-Schema.txt │ │ │ │ ├── SavePipeCountTableShared-Data.txt │ │ │ │ ├── SavePipeCountTableShared-Schema.txt │ │ │ │ ├── SavePipeCountTargetEncoding-Data.txt │ │ │ │ ├── SavePipeCountTargetEncoding-Schema.txt │ │ │ │ ├── SavePipeCountTargetEncodingKeyLabel-Data.txt │ │ │ │ ├── SavePipeCountTargetEncodingKeyLabel-Schema.txt │ │ │ │ ├── SavePipeCountTargetEncodingLoadModel-Data.txt │ │ │ │ ├── SavePipeCountTargetEncodingLoadModel-Schema.txt │ │ │ │ ├── SavePipeCustomStopwordsRemover-Data.txt │ │ │ │ ├── SavePipeDropColumns-Data.txt │ │ │ │ ├── SavePipeDropColumns-Schema.txt │ │ │ │ ├── SavePipeDropNAs-Data.txt │ │ │ │ ├── SavePipeExponentialAverage-Data.txt │ │ │ │ ├── SavePipeExponentialAverage-Schema.txt │ │ │ │ ├── SavePipeExpr-All-Data.txt │ │ │ │ ├── SavePipeExpr-All-Schema.txt │ │ │ │ ├── SavePipeExpr-CursLog.txt │ │ │ │ ├── SavePipeExpr-Data.txt │ │ │ │ ├── SavePipeExpr-Extra-Data.txt │ │ │ │ ├── SavePipeExpr-Extra-Schema.txt │ │ │ │ ├── SavePipeExpr-Schema.txt │ │ │ │ ├── SavePipeExprTextDef-Data.txt │ │ │ │ ├── SavePipeExprTextDef-Schema.txt │ │ │ │ ├── SavePipeExprTextDef-b-Schema.txt │ │ │ │ ├── SavePipeExprTextFull-Data.txt │ │ │ │ ├── SavePipeExprTextFull-Schema.txt │ │ │ │ ├── SavePipeExprTextFull-b-Schema.txt │ │ │ │ ├── SavePipeExprVec1-Data.txt │ │ │ │ ├── SavePipeExprVec1-Schema.txt │ │ │ │ ├── SavePipeExprVec1-b-Schema.txt │ │ │ │ ├── SavePipeExprVec2-Data.txt │ │ │ │ ├── SavePipeExprVec2-Schema.txt │ │ │ │ ├── SavePipeExprVec2-b-Schema.txt │ │ │ │ ├── SavePipeExprVec2-c-Schema.txt │ │ │ │ ├── SavePipeExprVec2-d-Schema.txt │ │ │ │ ├── SavePipeHash-CursLog.txt │ │ │ │ ├── SavePipeHash-Data.txt │ │ │ │ ├── SavePipeHash-Schema.txt │ │ │ │ ├── SavePipeIidChangePoint-Data.txt │ │ │ │ ├── SavePipeIidChangePoint-Schema.txt │ │ │ │ ├── SavePipeIidSpike-Data.txt │ │ │ │ ├── SavePipeIidSpike-Schema.txt │ │ │ │ ├── SavePipeInvertHash1-Data.txt │ │ │ │ ├── SavePipeInvertHash1-Schema.txt │ │ │ │ ├── SavePipeInvertHash2-Data.txt │ │ │ │ ├── SavePipeInvertHash2-Schema.txt │ │ │ │ ├── SavePipeInvertHash3-Data.txt │ │ │ │ ├── SavePipeInvertHash3-Schema.txt │ │ │ │ ├── SavePipeInvertHash4-Data.txt │ │ │ │ ├── SavePipeInvertHash4-Schema.txt │ │ │ │ ├── SavePipeInvertHash5-Data.txt │ │ │ │ ├── SavePipeInvertHash5-Schema.txt │ │ │ │ ├── SavePipeInvertHash6-Data.txt │ │ │ │ ├── SavePipeInvertHash6-Schema.txt │ │ │ │ ├── SavePipeKeyToVec-Data.txt │ │ │ │ ├── SavePipeKeyToVec-Schema.txt │ │ │ │ ├── SavePipeLabelParsers-Data.txt │ │ │ │ ├── SavePipeLabelParsers-Schema.txt │ │ │ │ ├── SavePipeLabelParsers1-Data.txt │ │ │ │ ├── SavePipeLabelParsers1-Schema.txt │ │ │ │ ├── SavePipeLabelParsers2-Data.txt │ │ │ │ ├── SavePipeLabelParsers2-Schema.txt │ │ │ │ ├── SavePipeLabelParsers3-Data.txt │ │ │ │ ├── SavePipeLabelParsers3-Schema.txt │ │ │ │ ├── SavePipeLabelParsers4-Data.txt │ │ │ │ ├── SavePipeLabelParsers4-Schema.txt │ │ │ │ ├── SavePipeLabelParsers4-out.txt │ │ │ │ ├── SavePipeLabelParsers5-Data.txt │ │ │ │ ├── SavePipeLabelParsers5-Schema.txt │ │ │ │ ├── SavePipeLda-Data.txt │ │ │ │ ├── SavePipeLda-Schema.txt │ │ │ │ ├── SavePipeMovingAverageNonUniform-Data.txt │ │ │ │ ├── SavePipeMovingAverageNonUniform-Schema.txt │ │ │ │ ├── SavePipeMovingAverageUniform-Data.txt │ │ │ │ ├── SavePipeMovingAverageUniform-Schema.txt │ │ │ │ ├── SavePipeNgram-Data.txt │ │ │ │ ├── SavePipeNgram-Schema.txt │ │ │ │ ├── SavePipeNgramHash-Convert-Data.txt │ │ │ │ ├── SavePipeNgramHash-Convert-Schema.txt │ │ │ │ ├── SavePipeNgramHash-Data.txt │ │ │ │ ├── SavePipeNgramHash-Schema.txt │ │ │ │ ├── SavePipeNgramSparse-Data.txt │ │ │ │ ├── SavePipeNgramSparse-Schema.txt │ │ │ │ ├── SavePipePValue-Data.txt │ │ │ │ ├── SavePipePValue-Schema.txt │ │ │ │ ├── SavePipePercentileThreshold-Data.txt │ │ │ │ ├── SavePipePercentileThreshold-Schema.txt │ │ │ │ ├── SavePipeSlidingWindow-Data.txt │ │ │ │ ├── SavePipeSlidingWindow-Schema.txt │ │ │ │ ├── SavePipeSlidingWindowW1L1-Data.txt │ │ │ │ ├── SavePipeSlidingWindowW1L1-Schema.txt │ │ │ │ ├── SavePipeSlidingWindowW1L2-Data.txt │ │ │ │ ├── SavePipeSlidingWindowW1L2-Schema.txt │ │ │ │ ├── SavePipeSlidingWindowW2L1-Data.txt │ │ │ │ ├── SavePipeSlidingWindowW2L1-Schema.txt │ │ │ │ ├── SavePipeSsaSpikeNoData-Data.txt │ │ │ │ ├── SavePipeSsaSpikeNoData-Schema.txt │ │ │ │ ├── SavePipeTermDictionaryNgram-Data.txt │ │ │ │ ├── SavePipeTermDictionaryNgram-Schema.txt │ │ │ │ ├── SavePipeTermDictionaryNgramHash-Data.txt │ │ │ │ ├── SavePipeTermDictionaryNgramHash-Schema.txt │ │ │ │ ├── SavePipeTermDictionaryNgramTerms-Data.txt │ │ │ │ ├── SavePipeTermDictionaryNgramTerms-Schema.txt │ │ │ │ ├── SavePipeTokenizerAndStopWords-Data.txt │ │ │ │ ├── SavePipeTokenizerAndStopWords-Schema.txt │ │ │ │ ├── SavePipeTrainAndScoreFccFastTree-Data.txt │ │ │ │ ├── SavePipeTrainAndScoreFccFastTree-Schema.txt │ │ │ │ ├── SavePipeTrainAndScoreFccTransformStr-Data.txt │ │ │ │ ├── SavePipeTrainAndScoreFccTransformStr-Schema.txt │ │ │ │ ├── SavePipeWithHeader-Data.txt │ │ │ │ ├── SavePipeWithHeader-Schema.txt │ │ │ │ ├── SavePipeWithKey-Data.txt │ │ │ │ ├── SavePipeWithKey-Schema.txt │ │ │ │ ├── SavePipeWordBag-Data.txt │ │ │ │ ├── SavePipeWordBag-Schema.txt │ │ │ │ ├── SavePipeWordBagManyToOne-Data.txt │ │ │ │ ├── SavePipeWordBagManyToOne-Schema.txt │ │ │ │ ├── SavePipeWordBagTfIdf-Data.txt │ │ │ │ ├── SavePipeWordBagTfIdf-Schema.txt │ │ │ │ ├── SavePipeWordHash-Data.txt │ │ │ │ ├── SavePipeWordHash-Schema.txt │ │ │ │ ├── SavePipeWordHashUnordered-Data.txt │ │ │ │ ├── SavePipeWordHashUnordered-Schema.txt │ │ │ │ ├── SavePipeWordTokenize-Data.txt │ │ │ │ ├── SavePipeWordTokenize-Schema.txt │ │ │ │ ├── TestParquetNull-Data.txt │ │ │ │ ├── TestParquetNull-Schema.txt │ │ │ │ ├── TestParquetPrimitiveDataTypes-Data.txt │ │ │ │ ├── TestParquetPrimitiveDataTypes-Schema.txt │ │ │ │ ├── TestTextLoaderDataTypes-CursLog.txt │ │ │ │ ├── TestTextLoaderDataTypes-Data.txt │ │ │ │ ├── TestTextLoaderDataTypes-Schema.txt │ │ │ │ ├── TokenizeWithSeparatorCommandLine-Data.txt │ │ │ │ └── TokenizeWithSeparatorCommandLine-Schema.txt │ │ │ ├── SymSGD/ │ │ │ │ ├── netcoreapp/ │ │ │ │ │ └── SymSGD-CV-breast-cancer.txt │ │ │ │ ├── osx-x64/ │ │ │ │ │ ├── SymSGD-CV-breast-cancer-out.txt │ │ │ │ │ ├── SymSGD-CV-breast-cancer.txt │ │ │ │ │ ├── SymSGD-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── SymSGD-TrainTest-breast-cancer-summary.txt │ │ │ │ │ └── SymSGD-TrainTest-breast-cancer.txt │ │ │ │ ├── win-x64/ │ │ │ │ │ ├── SymSGD-CV-breast-cancer-out.txt │ │ │ │ │ ├── SymSGD-CV-breast-cancer-rp.txt │ │ │ │ │ ├── SymSGD-CV-breast-cancer.txt │ │ │ │ │ ├── SymSGD-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── SymSGD-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── SymSGD-TrainTest-breast-cancer-summary.txt │ │ │ │ │ └── SymSGD-TrainTest-breast-cancer.txt │ │ │ │ └── win-x86/ │ │ │ │ ├── SymSGD-CV-breast-cancer-out.txt │ │ │ │ ├── SymSGD-CV-breast-cancer-rp.txt │ │ │ │ ├── SymSGD-CV-breast-cancer.txt │ │ │ │ ├── SymSGD-TrainTest-breast-cancer-out.txt │ │ │ │ ├── SymSGD-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── SymSGD-TrainTest-breast-cancer-summary.txt │ │ │ │ └── SymSGD-TrainTest-breast-cancer.txt │ │ │ ├── Term/ │ │ │ │ └── Term.tsv │ │ │ ├── Text/ │ │ │ │ ├── Normalized.tsv │ │ │ │ ├── bag_of_words.tsv │ │ │ │ ├── customWordEmbeddings.tsv │ │ │ │ ├── featurized.tsv │ │ │ │ ├── ldatopics.tsv │ │ │ │ ├── murmurHash.tsv │ │ │ │ ├── ngrams.tsv │ │ │ │ ├── tokenized.tsv │ │ │ │ ├── tokenizedWithSeparators.tsv │ │ │ │ ├── wordEmbeddings.tsv │ │ │ │ └── words_without_stopwords.tsv │ │ │ ├── TextLoader/ │ │ │ │ ├── missing_fields-with-impute.csv │ │ │ │ ├── missing_fields-without-impute.csv │ │ │ │ └── multiline.csv │ │ │ ├── Transform/ │ │ │ │ └── Concat/ │ │ │ │ ├── Concat1.tsv │ │ │ │ └── Concat2.tsv │ │ │ ├── WeightedEnsemble/ │ │ │ │ ├── WE-All-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-All-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-All-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Average-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Average-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-Average-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Default-CV-breast-cancer-out.txt │ │ │ │ ├── WE-Default-CV-breast-cancer-rp.txt │ │ │ │ ├── WE-Default-CV-breast-cancer.txt │ │ │ │ ├── WE-Default-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Default-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-Default-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Voting-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Voting-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-Voting-TrainTest-breast-cancer.txt │ │ │ │ ├── linux-arm/ │ │ │ │ │ ├── WE-All-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-All-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-All-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Average-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Average-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Average-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Default-CV-breast-cancer-out.txt │ │ │ │ │ ├── WE-Default-CV-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Default-CV-breast-cancer.txt │ │ │ │ │ ├── WE-Default-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Default-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Default-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Voting-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Voting-TrainTest-breast-cancer-rp.txt │ │ │ │ │ └── WE-Voting-TrainTest-breast-cancer.txt │ │ │ │ ├── linux-arm64/ │ │ │ │ │ ├── WE-All-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-All-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-All-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Average-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Average-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Average-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Default-CV-breast-cancer-out.txt │ │ │ │ │ ├── WE-Default-CV-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Default-CV-breast-cancer.txt │ │ │ │ │ ├── WE-Default-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Default-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Default-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Voting-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Voting-TrainTest-breast-cancer-rp.txt │ │ │ │ │ └── WE-Voting-TrainTest-breast-cancer.txt │ │ │ │ ├── netcoreapp/ │ │ │ │ │ ├── WE-All-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-rp.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Default-CV-breast-cancer.txt │ │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-rp.txt │ │ │ │ │ └── WE-Hetero-TrainTest-breast-cancer.txt │ │ │ │ ├── osx-arm64/ │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-out.txt │ │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer.txt │ │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-out.txt │ │ │ │ │ └── WE-Hetero-TrainTest-breast-cancer.txt │ │ │ │ └── win-arm/ │ │ │ │ ├── WE-All-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-All-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-All-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Average-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Average-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-Average-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-AvgPer-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-BestPerf-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Default-CV-breast-cancer-out.txt │ │ │ │ ├── WE-Default-CV-breast-cancer-rp.txt │ │ │ │ ├── WE-Default-CV-breast-cancer.txt │ │ │ │ ├── WE-Default-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Default-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-Default-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-Diverse-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-Hetero-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-RandomFeature-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-RandomPartition-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer-rp.txt │ │ │ │ ├── WE-StackingAP-TrainTest-breast-cancer.txt │ │ │ │ ├── WE-Voting-TrainTest-breast-cancer-out.txt │ │ │ │ ├── WE-Voting-TrainTest-breast-cancer-rp.txt │ │ │ │ └── WE-Voting-TrainTest-breast-cancer.txt │ │ │ ├── WeightedEnsembleMulticlass/ │ │ │ │ ├── WE-Average-TrainTest-iris-out.txt │ │ │ │ ├── WE-Average-TrainTest-iris-rp.txt │ │ │ │ ├── WE-Average-TrainTest-iris.txt │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-out.txt │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-rp.txt │ │ │ │ ├── WE-Bootstrap-TrainTest-iris.txt │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris-out.txt │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris-rp.txt │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris.txt │ │ │ │ ├── WE-Stacking-TrainTest-iris-out.txt │ │ │ │ ├── WE-Stacking-TrainTest-iris-rp.txt │ │ │ │ ├── WE-Stacking-TrainTest-iris.txt │ │ │ │ ├── WE-Voting-TrainTest-iris-out.txt │ │ │ │ ├── WE-Voting-TrainTest-iris-rp.txt │ │ │ │ ├── WE-Voting-TrainTest-iris.txt │ │ │ │ ├── linux-arm/ │ │ │ │ │ ├── WE-Average-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Average-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-Average-TrainTest-iris.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris.txt │ │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris.txt │ │ │ │ │ ├── WE-Voting-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Voting-TrainTest-iris-rp.txt │ │ │ │ │ └── WE-Voting-TrainTest-iris.txt │ │ │ │ ├── linux-arm64/ │ │ │ │ │ ├── WE-Average-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Average-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-Average-TrainTest-iris.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris.txt │ │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris.txt │ │ │ │ │ ├── WE-Voting-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Voting-TrainTest-iris-rp.txt │ │ │ │ │ └── WE-Voting-TrainTest-iris.txt │ │ │ │ ├── netcoreapp/ │ │ │ │ │ ├── WE-Average-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Average-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-Average-TrainTest-iris.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris-rp.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris.txt │ │ │ │ │ └── WE-Voting-TrainTest-iris-out.txt │ │ │ │ ├── osx-arm64/ │ │ │ │ │ ├── WE-Average-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Average-TrainTest-iris.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Bootstrap-TrainTest-iris.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris-out.txt │ │ │ │ │ ├── WE-Stacking-TrainTest-iris.txt │ │ │ │ │ └── WE-Voting-TrainTest-iris-out.txt │ │ │ │ └── win-arm/ │ │ │ │ ├── WE-Average-TrainTest-iris-out.txt │ │ │ │ ├── WE-Average-TrainTest-iris-rp.txt │ │ │ │ ├── WE-Average-TrainTest-iris.txt │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-out.txt │ │ │ │ ├── WE-Bootstrap-TrainTest-iris-rp.txt │ │ │ │ ├── WE-Bootstrap-TrainTest-iris.txt │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris-out.txt │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris-rp.txt │ │ │ │ ├── WE-SDCA-Average-TrainTest-iris.txt │ │ │ │ ├── WE-Stacking-TrainTest-iris-out.txt │ │ │ │ ├── WE-Stacking-TrainTest-iris-rp.txt │ │ │ │ ├── WE-Stacking-TrainTest-iris.txt │ │ │ │ ├── WE-Voting-TrainTest-iris-out.txt │ │ │ │ ├── WE-Voting-TrainTest-iris-rp.txt │ │ │ │ └── WE-Voting-TrainTest-iris.txt │ │ │ └── pcaAnomaly/ │ │ │ ├── Default-TrainTest-azureCounterUnlabeled-out.txt │ │ │ ├── Default-TrainTest-azureCounterUnlabeled-rp.txt │ │ │ ├── Default-TrainTest-azureCounterUnlabeled-summary.txt │ │ │ ├── Default-TrainTest-azureCounterUnlabeled.txt │ │ │ ├── Default-TrainTest-mnistOneClass-out.txt │ │ │ ├── Default-TrainTest-mnistOneClass-rp.txt │ │ │ ├── Default-TrainTest-mnistOneClass.txt │ │ │ ├── NoNorm-TrainTest-mnistOneClass-out.txt │ │ │ ├── NoNorm-TrainTest-mnistOneClass-rp.txt │ │ │ ├── NoNorm-TrainTest-mnistOneClass.txt │ │ │ ├── netcoreapp/ │ │ │ │ ├── Default-TrainTest-azureCounterUnlabeled-out.txt │ │ │ │ ├── Default-TrainTest-azureCounterUnlabeled-rp.txt │ │ │ │ ├── Default-TrainTest-azureCounterUnlabeled-summary.txt │ │ │ │ ├── Default-TrainTest-azureCounterUnlabeled.txt │ │ │ │ ├── Default-TrainTest-mnistOneClass-out.txt │ │ │ │ ├── Default-TrainTest-mnistOneClass-rp.txt │ │ │ │ ├── Default-TrainTest-mnistOneClass.txt │ │ │ │ ├── NoNorm-TrainTest-mnistOneClass-out.txt │ │ │ │ ├── NoNorm-TrainTest-mnistOneClass-rp.txt │ │ │ │ └── NoNorm-TrainTest-mnistOneClass.txt │ │ │ └── win-x64/ │ │ │ ├── Default-TrainTest-azureCounterUnlabeled-out.txt │ │ │ ├── Default-TrainTest-azureCounterUnlabeled-rp.txt │ │ │ ├── Default-TrainTest-azureCounterUnlabeled-summary.txt │ │ │ ├── Default-TrainTest-azureCounterUnlabeled.txt │ │ │ ├── Default-TrainTest-mnistOneClass-out.txt │ │ │ ├── Default-TrainTest-mnistOneClass-rp.txt │ │ │ ├── Default-TrainTest-mnistOneClass.txt │ │ │ ├── NoNorm-TrainTest-mnistOneClass-out.txt │ │ │ ├── NoNorm-TrainTest-mnistOneClass-rp.txt │ │ │ └── NoNorm-TrainTest-mnistOneClass.txt │ │ └── README.md │ ├── Cert.props │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Microsoft.Data.Analysis.Interactive.Tests/ │ │ ├── DataFrameInteractiveTests.cs │ │ └── Microsoft.Data.Analysis.Interactive.Tests.csproj │ ├── Microsoft.Data.Analysis.PerformanceTests/ │ │ ├── Microsoft.Data.Analysis.PerformanceTests.csproj │ │ ├── PerformanceTests.cs │ │ └── Program.cs │ ├── Microsoft.Data.Analysis.Tests/ │ │ ├── ArrayComparer.cs │ │ ├── ArrowIntegrationTests.cs │ │ ├── ArrowStringColumnTests.cs │ │ ├── DataFrame.IOTests.cs │ │ ├── DataFrameAssert.cs │ │ ├── DataFrameColumn.BinaryOperationTests.cs │ │ ├── DataFrameColumn.BinaryOperationTests.tt │ │ ├── DataFrameGroupByTests.cs │ │ ├── DataFrameIDataViewTests.cs │ │ ├── DataFrameJoinExtensionsTests.cs │ │ ├── DataFrameTests.BinaryOperations.cs │ │ ├── DataFrameTests.Computations.cs │ │ ├── DataFrameTests.Filter.cs │ │ ├── DataFrameTests.Join.cs │ │ ├── DataFrameTests.Merge.cs │ │ ├── DataFrameTests.Sort.cs │ │ ├── DataFrameTests.Utils.cs │ │ ├── DataFrameTests.cs │ │ ├── Microsoft.Data.Analysis.Tests.csproj │ │ ├── PrimitiveDataFrameColumnComputationsTests.cs │ │ ├── PrimitiveDataFrameColumnComputationsTests.tt │ │ ├── PrimitiveDataFrameColumnTests.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── StringDataFrameColumnTests.cs │ │ ├── TextFieldParserTests.cs │ │ └── VBufferColumnTests.cs │ ├── Microsoft.Extensions.ML.Tests/ │ │ ├── FileLoaderTests.cs │ │ ├── Microsoft.Extensions.ML.Tests.csproj │ │ ├── PredictionEnginePoolTests.cs │ │ ├── UriLoaderTests.cs │ │ └── testdata.txt │ ├── Microsoft.ML.AutoML.Tests/ │ │ ├── ApprovalTests/ │ │ │ ├── AutoFeaturizerTests.AutoFeaturizer_creditapproval_test.approved.txt │ │ │ ├── AutoFeaturizerTests.AutoFeaturizer_image_test.approved.txt │ │ │ ├── AutoFeaturizerTests.AutoFeaturizer_iris_test.approved.txt │ │ │ ├── AutoFeaturizerTests.AutoFeaturizer_newspaperchurn_test.approved.txt │ │ │ ├── AutoFeaturizerTests.AutoFeaturizer_uci_adult_test.approved.txt │ │ │ ├── AutoFeaturizerTests.ImagePathFeaturizerTest.approved.txt │ │ │ ├── ColumnInferenceTests.Wiki_column_inference_result_should_be_serializable.approved.txt │ │ │ ├── SweepableEstimatorPipelineTest.SingleModelPipeline_search_space_test.received.txt │ │ │ ├── SweepableEstimatorPipelineTest.SweepableEstimatorPipeline_search_space_init_value_test.approved.txt │ │ │ ├── SweepableExtensionTest.AppendIEstimatorToSweepabePipelineTest.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromIEstimatorAndBinaryClassifiers.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromIEstimatorAndMultiClassifiers.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromIEstimatorAndRegressors.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromIEstimatorAndSweepableEstimatorArray.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromSweepableEstimatorAndMultiClassifiers.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromSweepableEstimatorAndSweepableEstimatorArray.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromSweepableEstimatorPipelineAndMultiClassifiers.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromSweepableEstimatorPipelineAndSweepableEstimatorArray.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromSweepablePipelineAndMultiClassifiers.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelineFromSweepablePipelineAndSweepableEstimatorArray.approved.txt │ │ │ ├── SweepableExtensionTest.CreateSweepablePipelinePipelineFromIEstimatorAndMultiClassifiers.approved.txt │ │ │ ├── SweepablePipelineTests.SweepablePipeline_Append_SweepableEstimator_Test.approved.txt │ │ │ └── TrialResultManagerTest.CsvTrialResultManager_end_to_end_test.approved.txt │ │ ├── AutoFeaturizerTests.cs │ │ ├── AutoFitTests.cs │ │ ├── AutoMLExperimentTests.cs │ │ ├── BestResultUtilTests.cs │ │ ├── ColumnInferenceTests.cs │ │ ├── ColumnInferenceValidationUtilTests.cs │ │ ├── ColumnInformationUtilTests.cs │ │ ├── ConversionTests.cs │ │ ├── DatasetDimensionsTests.cs │ │ ├── DatasetUtil.cs │ │ ├── EntityTest.cs │ │ ├── EstimatorExtensionTests.cs │ │ ├── GetNextPipelineTests.cs │ │ ├── GridSearchTunerTests.cs │ │ ├── InferredPipelineTests.cs │ │ ├── MLContextManagerTests.cs │ │ ├── MetricsAgentsTests.cs │ │ ├── MetricsUtil.cs │ │ ├── Microsoft.ML.AutoML.Tests.csproj │ │ ├── PurposeInferenceTests.cs │ │ ├── SplitUtilTests.cs │ │ ├── StopTrainingManagerTests.cs │ │ ├── SuggestedPipelineBuilderTests.cs │ │ ├── SweepableEstimatorPipelineTest.cs │ │ ├── SweepableExtensionTest.cs │ │ ├── SweepablePipelineTests.cs │ │ ├── SweeperTests.cs │ │ ├── TestData/ │ │ │ ├── BinaryDatasetWithBoolColumn.txt │ │ │ ├── DatasetWithDefaultColumnNames.txt │ │ │ ├── DatasetWithEmptyColumn.txt │ │ │ ├── DatasetWithNewlineBetweenQuotes.txt │ │ │ ├── DatasetWithoutHeader.txt │ │ │ ├── NameColumnIsOnlyFeatureDataset.txt │ │ │ ├── TrivialMulticlassDataset.txt │ │ │ └── wiki-column-inference.json │ │ ├── TextFileSampleTests.cs │ │ ├── TrainValidaionDatasetManagerTest.cs │ │ ├── TrainerExtensionsTests.cs │ │ ├── TransformInferenceTests.cs │ │ ├── TransformPostTrainerInferenceTests.cs │ │ ├── TrialResultManagerTest.cs │ │ ├── TunerTests.cs │ │ ├── UserInputValidationTests.cs │ │ ├── Util.cs │ │ └── Utils/ │ │ ├── DoubleToDecimalConverter.cs │ │ ├── FloatToDecimalConverter.cs │ │ ├── MLNetUtils/ │ │ │ ├── DataViewTestFixture.cs │ │ │ └── MLNetUtils.cs │ │ ├── TaskAgnosticAutoFit.cs │ │ └── TaskAgnosticIterationResult.cs │ ├── Microsoft.ML.Benchmarks.Tests/ │ │ ├── BenchmarksTest.cs │ │ └── Microsoft.ML.Benchmarks.Tests.csproj │ ├── Microsoft.ML.CodeAnalyzer.Tests/ │ │ ├── Code/ │ │ │ ├── BaseTestClassTest.cs │ │ │ ├── BestFriendOnPublicDeclarationTest.cs │ │ │ ├── BestFriendTest.cs │ │ │ ├── ContractsCheckTest.cs │ │ │ ├── InstanceInitializerTest.cs │ │ │ ├── NameTest.cs │ │ │ ├── ParameterVariableNameTest.cs │ │ │ ├── README.md │ │ │ ├── RelaxTestNamingTest.cs │ │ │ ├── SingleVariableDeclarationTest.cs │ │ │ └── TypeParamNameTest.cs │ │ ├── Helpers/ │ │ │ ├── AdditionalMetadataReferences.cs │ │ │ ├── CSharpCodeFixVerifier`2.cs │ │ │ └── TestUtils.cs │ │ ├── Microsoft.ML.CodeAnalyzer.Tests.csproj │ │ └── Resources/ │ │ ├── BestFriendDeclaration.cs │ │ ├── BestFriendOnPublicDeclaration.cs │ │ ├── BestFriendUser.cs │ │ ├── ContractsCheckAfterFix.cs │ │ ├── ContractsCheckBeforeFix.cs │ │ └── ContractsCheckResource.cs │ ├── Microsoft.ML.CodeGenerator.Tests/ │ │ ├── ApprovalTests/ │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.CodeGenTest.ConsoleApp.csproj.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.CodeGenTest.Model.csproj.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.ConsumeModel.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.LabelMapping.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.ModelBuilder.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.ModelInput.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.ModelOutput.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.Program.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.test.ConsoleApp.csproj.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureCodeGeneratorTest.test.Model.csproj.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureImageCodeGeneratorTest.CodeGenTest.ConsoleApp.csproj.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureImageCodeGeneratorTest.CodeGenTest.Model.csproj.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureImageCodeGeneratorTest.ConsumeModel.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureImageCodeGeneratorTest.ModelBuilder.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureImageCodeGeneratorTest.ModelInput.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureImageCodeGeneratorTest.ModelOutput.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureImageCodeGeneratorTest.Program.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureImageCodeGeneratorTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureImageCodeGeneratorTest.received.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureModelBuilderTest.Image.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureModelBuilderTest.NonImage.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureObjectDetectionCodeGeneratorTest.CodeGenTest.ConsoleApp.csproj.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureObjectDetectionCodeGeneratorTest.CodeGenTest.Model.csproj.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureObjectDetectionCodeGeneratorTest.ConsumeModel.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureObjectDetectionCodeGeneratorTest.ModelBuilder.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureObjectDetectionCodeGeneratorTest.ModelInput.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureObjectDetectionCodeGeneratorTest.ModelOutput.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.AzureObjectDetectionCodeGeneratorTest.Program.cs.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ConsoleAppModelBuilderCSFileContentBinaryTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ConsoleAppModelBuilderCSFileContentOvaTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ConsoleAppModelBuilderCSFileContentRankingTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ConsoleAppModelBuilderCSFileContentRegressionTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ConsoleAppProgramCSFileContentTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ConsoleAppProjectFileContentTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ConsumeModelContentTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ModelInputClassTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ModelInputClassTest.received.txt │ │ │ ├── ConsoleCodeGeneratorTests.ModelInputClassTest.sanitized_map.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ModelInputClassTest.sanitized_null_map.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ModelInputClassTest.unsanitized_map.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ModelInputClassTest.unsanitized_null_map.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ModelProjectFileContentTestOnlyStableProjects.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.ObservationCSFileContentTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.PredictionCSFileContentTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.PredictionProgramCSFileContentTest.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.Recommendation_GenerateConsoleAppProjectContents_VerifyModelBuilder.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.Recommendation_GenerateConsoleAppProjectContents_VerifyPredictProgram.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.Recommendation_GenerateConsoleAppProjectContents_VerifyPredictProject.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.Recommendation_GenerateModelProjectContents_VerifyConsumeModel.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.Recommendation_GenerateModelProjectContents_VerifyModelInput.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.Recommendation_GenerateModelProjectContents_VerifyModelOutput.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.Recommendation_GenerateModelProjectContents_VerifyModelProject.approved.txt │ │ │ ├── ConsoleCodeGeneratorTests.cs │ │ │ ├── TemplateTest.TestAzureImageModelOutputClass_WithLabel.approved.txt │ │ │ ├── TemplateTest.TestAzureObjectDetectionModelOutputClass_WithLabel.approved.txt │ │ │ ├── TemplateTest.TestConsumeModel.approved.txt │ │ │ ├── TemplateTest.TestConsumeModel_AzureImage.approved.txt │ │ │ ├── TemplateTest.TestConsumeModel_AzureObjectDetection.approved.txt │ │ │ ├── TemplateTest.TestConsumeModel_NonAzureImage.approved.txt │ │ │ ├── TemplateTest.TestConsumeModel_NotAzureImage_NotObjectDetection.approved.txt │ │ │ ├── TemplateTest.TestModelBuilder_noOnnx_noTestData.approved.txt │ │ │ ├── TemplateTest.TestPredictProgram_WithSampleData.approved.txt │ │ │ └── TemplateTest.cs │ │ ├── CodeGenTests.cs │ │ ├── Microsoft.ML.CodeGenerator.Tests.csproj │ │ ├── TrainerGeneratorTests.cs │ │ ├── TransformGeneratorTests.cs │ │ └── UtilTest.cs │ ├── Microsoft.ML.Core.Tests/ │ │ ├── Microsoft.ML.Core.Tests.csproj │ │ └── UnitTests/ │ │ ├── ColumnTypes.cs │ │ ├── CoreBaseTestClass.cs │ │ ├── DataTypes.cs │ │ ├── FileSource.cs │ │ ├── ScoreSchemaTest.cs │ │ ├── TestContracts.cs │ │ ├── TestCustomTypeRegister.cs │ │ ├── TestEarlyStoppingCriteria.cs │ │ ├── TestEntryPoints.cs │ │ ├── TestHosts.cs │ │ ├── TestLoss.cs │ │ ├── TestLruCache.cs │ │ ├── TestModelLoad.cs │ │ ├── TestResourceDownload.cs │ │ ├── TestUtilities.cs │ │ └── TestVBuffer.cs │ ├── Microsoft.ML.CpuMath.PerformanceTests/ │ │ ├── AvxPerformanceTests.cs │ │ ├── Microsoft.ML.CpuMath.PerformanceTests.csproj │ │ ├── NativePerformanceTests.cs │ │ ├── PerformanceTests.cs │ │ ├── Program.cs │ │ ├── SmallInputCpuMathPerformanceTests.cs │ │ └── SsePerformanceTests.cs │ ├── Microsoft.ML.CpuMath.UnitTests/ │ │ ├── Microsoft.ML.CpuMath.UnitTests.csproj │ │ └── UnitTests.cs │ ├── Microsoft.ML.FSharp.Tests/ │ │ ├── Microsoft.ML.FSharp.Tests.fsproj │ │ ├── SmokeTests.fs │ │ └── xunit.runner.json │ ├── Microsoft.ML.Fairlearn.Tests/ │ │ ├── GridSearchTest.cs │ │ ├── MetricTest.cs │ │ ├── Microsoft.ML.Fairlearn.Tests.csproj │ │ └── UtilityTest.cs │ ├── Microsoft.ML.GenAI.Core.Tests/ │ │ ├── CausalLMDatasetTest.cs │ │ ├── Microsoft.ML.GenAI.Core.Tests.csproj │ │ └── QuantizedLinearTests.cs │ ├── Microsoft.ML.GenAI.LLaMA.Tests/ │ │ ├── Approvals/ │ │ │ ├── LLaMA3_1Tests.ItBuildChatTemplateFromAutoGenChatHistory.approved.txt │ │ │ ├── LLaMA3_1Tests.ItBuildChatTemplateFromMEAIChatHistory.approved.txt │ │ │ ├── LLaMA3_1Tests.ItBuildChatTemplateFromSemanticKernelChatHistory.approved.txt │ │ │ ├── LLaMA3_1Tests.Llama_3_1_405b_ShapeTest.approved.txt │ │ │ ├── LLaMA3_1Tests.Llama_3_1_70b_ShapeTest.approved.txt │ │ │ ├── LLaMA3_1Tests.Llama_3_1_8b_ShapeTest.approved.txt │ │ │ ├── LLaMA3_1Tests.TokenizerTest.approved.txt │ │ │ ├── LLaMA3_2Tests.Llama_3_2_1b_ShapeTest.approved.txt │ │ │ └── LLaMA3_2Tests.Llama_3_2_3b_ShapeTest.approved.txt │ │ ├── LLaMA3_1Tests.TokenizerTest.received.txt │ │ ├── LLaMA3_1Tests.cs │ │ ├── LLaMA3_2Tests.cs │ │ └── Microsoft.ML.GenAI.LLaMA.Tests.csproj │ ├── Microsoft.ML.GenAI.Mistral.Tests/ │ │ ├── Approvals/ │ │ │ ├── Mistral_7B_Instruct_V0_3Tests.ItBuildChatTemplateFromAutoGenChatHistory.approved.txt │ │ │ ├── Mistral_7B_Instruct_V0_3Tests.ItBuildChatTemplateWithToolsFromAutoGenChatHistory.approved.txt │ │ │ ├── Mistral_7B_Instruct_V0_3Tests.Mistral_7B_Instruct_V0_3_ShapeTest.approved.txt │ │ │ ├── Mistral_7B_Instruct_V0_3Tests.TokenizerTest.approved.txt │ │ │ └── Mistral_V0_3Tests.TokenizerTest.approved.txt │ │ ├── Microsoft.ML.GenAI.Mistral.Tests.csproj │ │ └── Mistral_7B_Instruct_V0_3Tests.cs │ ├── Microsoft.ML.GenAI.Phi.Tests/ │ │ ├── Approvals/ │ │ │ ├── Phi2Test.LoadSafeTensorShapeTest.approved.txt │ │ │ ├── Phi2Test.TokenizerTest.approved.txt │ │ │ ├── Phi2Tests.LoadSafeTensorShapeTest.approved.txt │ │ │ ├── Phi2Tests.TokenizerTest.approved.txt │ │ │ ├── Phi3Tests.Phi3Medium128KShapeTest.approved.txt │ │ │ ├── Phi3Tests.Phi3Medium4KShapeTest.approved.txt │ │ │ ├── Phi3Tests.Phi3Mini128KLayerSizeTest.approved.txt │ │ │ ├── Phi3Tests.Phi3Mini128KShapeTest.approved.txt │ │ │ ├── Phi3Tests.Phi3Mini4KInt4QuantizeShapeTest.approved.txt │ │ │ ├── Phi3Tests.Phi3Mini4KInt8QuantizeShapeTest.approved.txt │ │ │ ├── Phi3Tests.Phi3Mini4KShapeTest.approved.txt │ │ │ └── Phi3Tests.TokenizerTest.approved.txt │ │ ├── AutoGenTests.cs │ │ ├── Microsoft.ML.GenAI.Phi.Tests.csproj │ │ ├── Phi2Tests.cs │ │ ├── Phi3Tests.cs │ │ └── SemanticKernelTests.cs │ ├── Microsoft.ML.IntegrationTests/ │ │ ├── Common.cs │ │ ├── DataIO.cs │ │ ├── DataTransformation.cs │ │ ├── Datasets/ │ │ │ ├── Adult.cs │ │ │ ├── CommonColumns.cs │ │ │ ├── HousingRegression.cs │ │ │ ├── Iris.cs │ │ │ ├── MnistOneClass.cs │ │ │ ├── Sentiment.cs │ │ │ ├── TrivialMatrixFactorization.cs │ │ │ └── TypeTestData.cs │ │ ├── Debugging.cs │ │ ├── Evaluation.cs │ │ ├── Explainability.cs │ │ ├── IntegrationTestBaseClass.cs │ │ ├── IntrospectiveTraining.cs │ │ ├── Microsoft.ML.IntegrationTests.csproj │ │ ├── ModelFiles.cs │ │ ├── ONNX.cs │ │ ├── Prediction.cs │ │ ├── SchemaDefinitionTests.cs │ │ ├── Training.cs │ │ └── Validation.cs │ ├── Microsoft.ML.NightlyBuild.Tests/ │ │ └── Microsoft.ML.NightlyBuild.Tests.csproj │ ├── Microsoft.ML.NugetPackageVersionUpdater/ │ │ ├── Microsoft.ML.NugetPackageVersionUpdater.csproj │ │ └── Program.cs │ ├── Microsoft.ML.OnnxTransformerTest/ │ │ ├── DnnImageFeaturizerTest.cs │ │ ├── Microsoft.ML.OnnxTransformerTest.csproj │ │ └── OnnxTransformTests.cs │ ├── Microsoft.ML.PerformanceTests/ │ │ ├── BenchmarkBase.cs │ │ ├── CacheDataViewBench.cs │ │ ├── FeaturizeTextBench.cs │ │ ├── Harness/ │ │ │ ├── Configs.cs │ │ │ ├── Metrics.cs │ │ │ └── ProjectGenerator.cs │ │ ├── HashBench.cs │ │ ├── Helpers/ │ │ │ ├── CIBenchmark.cs │ │ │ ├── EmptyWriter.cs │ │ │ ├── EnvironmentFactory.cs │ │ │ ├── Errors.cs │ │ │ └── ExecuteMaml.cs │ │ ├── ImageClassificationBench.cs │ │ ├── KMeansAndLogisticRegressionBench.cs │ │ ├── Microsoft.ML.PerformanceTests.csproj │ │ ├── Numeric/ │ │ │ └── Ranking.cs │ │ ├── PredictionEngineBench.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── RffTransform.cs │ │ ├── ShuffleRowsBench.cs │ │ ├── StochasticDualCoordinateAscentClassifierBench.cs │ │ ├── Text/ │ │ │ └── MultiClassClassification.cs │ │ ├── TextLoaderBench.cs │ │ └── TextPredictionEngineCreation.cs │ ├── Microsoft.ML.Predictor.Tests/ │ │ ├── CmdLine/ │ │ │ ├── BasicParsingInput.txt │ │ │ ├── CmdIndenterTest.cs │ │ │ ├── CmdLine.cs │ │ │ ├── CmdLineReverseTest.cs │ │ │ ├── IndenterTestInput.txt │ │ │ └── SingleParsingInput.txt │ │ ├── CompareBaselines.cs │ │ ├── Global.cs │ │ ├── Microsoft.ML.Predictor.Tests.csproj │ │ ├── ResultProcessor/ │ │ │ ├── TestData/ │ │ │ │ ├── ClassifierRegressor/ │ │ │ │ │ ├── 55.out.txt │ │ │ │ │ ├── 56.out.txt │ │ │ │ │ ├── 57.out.txt │ │ │ │ │ ├── 64.out.txt │ │ │ │ │ ├── 65.out.txt │ │ │ │ │ ├── 66.out.txt │ │ │ │ │ ├── 67.out.txt │ │ │ │ │ ├── 68.out.txt │ │ │ │ │ ├── 69.out.txt │ │ │ │ │ ├── 70.out.txt │ │ │ │ │ ├── 71.out.txt │ │ │ │ │ ├── 72.out.txt │ │ │ │ │ ├── 73.out.txt │ │ │ │ │ ├── 74.out.txt │ │ │ │ │ ├── 75.out.txt │ │ │ │ │ ├── 76.out.txt │ │ │ │ │ ├── 77.out.txt │ │ │ │ │ ├── 78.out.txt │ │ │ │ │ ├── 79.out.txt │ │ │ │ │ └── 80.out.txt │ │ │ │ ├── MultiClassifier/ │ │ │ │ │ ├── 0.out.txt │ │ │ │ │ ├── 1.out.txt │ │ │ │ │ ├── 10.out.txt │ │ │ │ │ ├── 11.out.txt │ │ │ │ │ ├── 12.out.txt │ │ │ │ │ ├── 13.out.txt │ │ │ │ │ ├── 14.out.txt │ │ │ │ │ ├── 15.out.txt │ │ │ │ │ ├── 16.out.txt │ │ │ │ │ ├── 17.out.txt │ │ │ │ │ ├── 18.out.txt │ │ │ │ │ ├── 19.out.txt │ │ │ │ │ ├── 2.out.txt │ │ │ │ │ ├── 20.out.txt │ │ │ │ │ ├── 3.out.txt │ │ │ │ │ ├── 4.out.txt │ │ │ │ │ ├── 5.out.txt │ │ │ │ │ ├── 6.out.txt │ │ │ │ │ ├── 7.out.txt │ │ │ │ │ ├── 8.out.txt │ │ │ │ │ └── 9.out.txt │ │ │ │ └── SingleClassifier/ │ │ │ │ ├── 0.out.txt │ │ │ │ ├── 1.out.txt │ │ │ │ ├── 10.out.txt │ │ │ │ ├── 11.out.txt │ │ │ │ ├── 12.out.txt │ │ │ │ ├── 13.out.txt │ │ │ │ ├── 14.out.txt │ │ │ │ ├── 15.out.txt │ │ │ │ ├── 2.out.txt │ │ │ │ ├── 3.out.txt │ │ │ │ ├── 4.out.txt │ │ │ │ ├── 5.out.txt │ │ │ │ ├── 6.out.txt │ │ │ │ ├── 7.out.txt │ │ │ │ ├── 8.out.txt │ │ │ │ ├── 9.out.txt │ │ │ │ ├── WithEmptyLines/ │ │ │ │ │ ├── 0.out.txt │ │ │ │ │ ├── 1.out.txt │ │ │ │ │ ├── 2.out.txt │ │ │ │ │ ├── 3.out.txt │ │ │ │ │ ├── 4.out.txt │ │ │ │ │ ├── 5.out.txt │ │ │ │ │ ├── 6.out.txt │ │ │ │ │ ├── 7.out.txt │ │ │ │ │ └── 8.out.txt │ │ │ │ └── WithSpace/ │ │ │ │ ├── 0.out.txt │ │ │ │ ├── 1.out.txt │ │ │ │ ├── 2.out.txt │ │ │ │ ├── 3.out.txt │ │ │ │ ├── 4.out.txt │ │ │ │ ├── 5.out.txt │ │ │ │ ├── 6.out.txt │ │ │ │ ├── 7.out.txt │ │ │ │ └── 8.out.txt │ │ │ └── TestResultProcessor.cs │ │ ├── Test-API.cs │ │ ├── TestConcurrency.cs │ │ ├── TestCreateInstances.cs │ │ ├── TestCrossValidation.cs │ │ ├── TestGamPublicInterfaces.cs │ │ ├── TestIniModels.cs │ │ ├── TestParallelFasttreeInterface.cs │ │ ├── TestPredictors.cs │ │ ├── TestTransposer.cs │ │ └── TestTrivialPredictors.cs │ ├── Microsoft.ML.SearchSpace.Tests/ │ │ ├── ApprovalTests/ │ │ │ ├── ParameterTest.Array_parameter_serialize_test.approved.txt │ │ │ ├── ParameterTest.Nested_parameter_serialize_test.approved.txt │ │ │ ├── SearchSpaceTest.Sgd_default_search_space_test.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.AveragedPerceptronTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.LbfgsLogisticRegressionBinaryTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.LbfgsMaximumEntropyMulticlassTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.LbfgsPoissonRegressionTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.LdSvmTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.LinearSvmTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.OnlineGradientDescentTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.SdcaLogisticRegressionBinaryTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.SdcaMaximumEntropyMulticlassTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.SdcaNonCalibratedBinaryTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.SdcaNonCalibratedMulticlassTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.SdcaRegressionTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.SgdCalibratedTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Microsoft.ML.Trainers.SgdNonCalibratedTrainer+Options.approved.txt │ │ │ ├── SearchSpaceTest.Trainer_default_search_space_test.Options.approved.txt │ │ │ └── SearchSpaceTest.Trainer_default_search_space_test.Options.received.txt │ │ ├── ChoiceOptionTest.cs │ │ ├── Microsoft.ML.SearchSpace.Tests.csproj │ │ ├── ParameterTest.cs │ │ ├── SearchSpaceTest.cs │ │ ├── TestBase.cs │ │ └── UniformNumericOptionTests.cs │ ├── Microsoft.ML.Sweeper.Tests/ │ │ ├── Microsoft.ML.Sweeper.Tests.csproj │ │ ├── SweeperTest.cs │ │ └── TestSweeper.cs │ ├── Microsoft.ML.TensorFlow.Tests/ │ │ ├── Microsoft.ML.TensorFlow.Tests.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── TensorFlowEstimatorTests.cs │ │ └── TensorflowTests.cs │ ├── Microsoft.ML.TestFramework/ │ │ ├── Attributes/ │ │ │ ├── BenchmarkTheoryAttribute.cs │ │ │ ├── LightGBMFactAttribute.cs │ │ │ ├── LightGBMTheoryAttribute.cs │ │ │ ├── NotArm32FactAttribute.cs │ │ │ ├── OnnxTheoryAttribute.cs │ │ │ ├── TensorflowFactAttribute.cs │ │ │ ├── TensorflowTheoryAttribute.cs │ │ │ └── TorchSharpFactAttribute.cs │ │ ├── BaseTestBaseline.cs │ │ ├── BaseTestClass.cs │ │ ├── BaseTestPredictorsMaml.cs │ │ ├── BytesStreamSource.cs │ │ ├── CopyAction.cs │ │ ├── DataPipe/ │ │ │ ├── Parquet.cs │ │ │ ├── PartitionedFileLoaderTests.cs │ │ │ ├── TestDataPipe.cs │ │ │ └── TestDataPipeBase.cs │ │ ├── EnvironmentExtensions.cs │ │ ├── GlobalBase.cs │ │ ├── Learners.cs │ │ ├── Microsoft.ML.TestFramework.csproj │ │ ├── PasteArguments.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── SubComponent.cs │ │ ├── TestCommandBase.cs │ │ ├── TestInitialization.cs │ │ └── TestSparseDataView.cs │ ├── Microsoft.ML.TestFrameworkCommon/ │ │ ├── AsyncTestHelper.cs │ │ ├── Attributes/ │ │ │ ├── AttributeHelpers.cs │ │ │ ├── EnvironmentSpecificFactAttribute.cs │ │ │ ├── EnvironmentSpecificTheoryAttribute.cs │ │ │ ├── FieldAwareFactorizationMachineFactAttribute.cs │ │ │ ├── IterationDataAttribute.cs │ │ │ ├── LoggingLevelAttribute.cs │ │ │ ├── NativeDependencyFactAttribute.cs │ │ │ ├── NativeDependencyTheoryAttribute.cs │ │ │ ├── OnnxFactAttribute.cs │ │ │ ├── X64FactAttribute.cs │ │ │ └── X86X64FactAttribute.cs │ │ ├── Datasets.cs │ │ ├── Microsoft.ML.TestFrameworkCommon.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── TestCommon.cs │ │ ├── TestLogger.cs │ │ ├── Utility/ │ │ │ ├── Kernel32.cs │ │ │ ├── Libdl.cs │ │ │ ├── LibraryLoader.cs │ │ │ ├── License │ │ │ ├── NativeLibrary.cs │ │ │ └── PathResolver.cs │ │ └── xunit.runner.json │ ├── Microsoft.ML.Tests/ │ │ ├── AnomalyDetectionTests.cs │ │ ├── BinaryLoaderSaverTests.cs │ │ ├── CachingTests.cs │ │ ├── CalibratedModelParametersTests.cs │ │ ├── CollectionsDataViewTest.cs │ │ ├── DatabaseLoaderTests.cs │ │ ├── EvaluateTests.cs │ │ ├── ExpressionLanguageTests/ │ │ │ ├── ExpressionLanguageTests.cs │ │ │ └── TestData/ │ │ │ ├── ExprBindExInput.txt │ │ │ ├── ExprBindInput.txt │ │ │ ├── ExprCodeGenInput.txt │ │ │ ├── ExprEvalInput.txt │ │ │ └── ExprParseInput.txt │ │ ├── FakeSchemaTest.cs │ │ ├── FeatureContributionTests.cs │ │ ├── ImagesTests.cs │ │ ├── LearningRateSchedulerTest.cs │ │ ├── Microsoft.ML.Tests.csproj │ │ ├── OnnxConversionTest.cs │ │ ├── OnnxSequenceTypeWithAttributesTest.cs │ │ ├── PermutationFeatureImportanceTests.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── RangeFilterTests.cs │ │ ├── Scenarios/ │ │ │ ├── Api/ │ │ │ │ ├── ApiScenariosTests.cs │ │ │ │ ├── CookbookSamples/ │ │ │ │ │ └── CookbookSamplesDynamicApi.cs │ │ │ │ ├── Estimators/ │ │ │ │ │ ├── DecomposableTrainAndPredict.cs │ │ │ │ │ ├── Extensibility.cs │ │ │ │ │ ├── MultithreadedPrediction.cs │ │ │ │ │ ├── PredictAndMetadata.cs │ │ │ │ │ ├── SimpleTrainAndPredict.cs │ │ │ │ │ └── TrainWithInitialPredictor.cs │ │ │ │ └── TestApi.cs │ │ │ ├── ClusteringTests.cs │ │ │ ├── GetColumnTests.cs │ │ │ ├── IrisPlantClassificationTests.cs │ │ │ ├── IrisPlantClassificationWithStringLabelTests.cs │ │ │ ├── OvaTest.cs │ │ │ ├── RegressionTest.cs │ │ │ └── WordBagTest.cs │ │ ├── ScenariosWithDirectInstantiation/ │ │ │ └── IrisPlantClassificationTests.cs │ │ ├── SvmLightTests.cs │ │ ├── TermEstimatorTests.cs │ │ ├── TextLoaderTests.cs │ │ ├── TrainerEstimators/ │ │ │ ├── CalibratorEstimators.cs │ │ │ ├── FAFMEstimator.cs │ │ │ ├── LbfgsTests.cs │ │ │ ├── MatrixFactorizationTests.cs │ │ │ ├── MetalinearEstimators.cs │ │ │ ├── OlsLinearRegressionTests.cs │ │ │ ├── OneDalEstimators.cs │ │ │ ├── OnlineLinearTests.cs │ │ │ ├── PriorRandomTests.cs │ │ │ ├── SdcaTests.cs │ │ │ ├── SymSgdClassificationTests.cs │ │ │ ├── TrainerEstimators.cs │ │ │ ├── TreeEnsembleFeaturizerTest.cs │ │ │ └── TreeEstimators.cs │ │ └── Transformers/ │ │ ├── CategoricalHashTests.cs │ │ ├── CategoricalTests.cs │ │ ├── CharTokenizeTests.cs │ │ ├── ConcatTests.cs │ │ ├── ConvertTests.cs │ │ ├── CopyColumnEstimatorTests.cs │ │ ├── CountTargetEncodingTests.cs │ │ ├── CustomMappingTests.cs │ │ ├── ExpressionTransformerTests.cs │ │ ├── FeatureSelectionTests.cs │ │ ├── GroupUngroup.cs │ │ ├── HashTests.cs │ │ ├── KeyToBinaryVectorEstimatorTest.cs │ │ ├── KeyToValueTests.cs │ │ ├── KeyToVectorEstimatorTests.cs │ │ ├── LineParserTests.cs │ │ ├── NAIndicatorTests.cs │ │ ├── NAReplaceTests.cs │ │ ├── NormalizerTests.cs │ │ ├── PcaTests.cs │ │ ├── RffTests.cs │ │ ├── SelectColumnsTests.cs │ │ ├── TextFeaturizerTests.cs │ │ ├── TextNormalizer.cs │ │ ├── ValueMappingTests.cs │ │ ├── WordBagTransformerTests.cs │ │ ├── WordEmbeddingsTests.cs │ │ └── WordTokenizeTests.cs │ ├── Microsoft.ML.TimeSeries.Tests/ │ │ ├── Microsoft.ML.TimeSeries.Tests.csproj │ │ ├── TimeSeries.cs │ │ ├── TimeSeriesDirectApi.cs │ │ ├── TimeSeriesEstimatorTests.cs │ │ └── TimeSeriesSimpleApiTests.cs │ ├── Microsoft.ML.Tokenizers.Data.Tests/ │ │ ├── Microsoft.ML.Tokenizers.Data.Tests.csproj │ │ └── TokenizerDataTests.cs │ ├── Microsoft.ML.Tokenizers.Tests/ │ │ ├── BertTokenizerTests.cs │ │ ├── BpeTests.cs │ │ ├── CodeGenTests.cs │ │ ├── Data/ │ │ │ ├── lib.rs.txt │ │ │ ├── tokens.json │ │ │ ├── tokens_gpt2.json │ │ │ ├── tokens_gpt4o.json │ │ │ ├── tokens_p50k_base.json │ │ │ ├── tokens_p50k_edit.json │ │ │ └── tokens_r50k_base.json │ │ ├── DoubleArrayTrieTest.cs │ │ ├── EnglishRobertaTests.cs │ │ ├── LlamaTests.cs │ │ ├── Microsoft.ML.Tokenizers.Tests.csproj │ │ ├── NormalizerTests.cs │ │ ├── PreTokenizerTests.cs │ │ ├── SentencePieceTests.cs │ │ ├── TiktokenTests.cs │ │ ├── TokenizerTests.cs │ │ ├── UnigramTests.cs │ │ ├── Utils.cs │ │ └── WordPieceTests.cs │ ├── Microsoft.ML.TorchSharp.Tests/ │ │ ├── Microsoft.ML.TorchSharp.Tests.csproj │ │ ├── NerTests.cs │ │ ├── ObjectDetectionTests.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── QATests.cs │ │ └── TextClassificationTests.cs │ ├── NightlyBuildDependency.props │ ├── TestFrameworkDependency.props │ ├── coverlet.runsettings │ ├── data/ │ │ ├── MNIST.Test.tiny.txt │ │ ├── MNIST.Train.0-class.tiny.txt │ │ ├── MSLRWeb1K-tiny.tsv │ │ ├── Parquet/ │ │ │ ├── alltypes.parquet │ │ │ └── test-null.parquet │ │ ├── Partitioned/ │ │ │ ├── Named/ │ │ │ │ └── Year=2017/ │ │ │ │ ├── Month=01/ │ │ │ │ │ ├── data1.csv │ │ │ │ │ ├── data2.csv │ │ │ │ │ └── dataEmpty.csv │ │ │ │ ├── Month=02/ │ │ │ │ │ └── data1.csv │ │ │ │ └── TestBadDir/ │ │ │ │ └── data1.csv │ │ │ └── Unnamed/ │ │ │ └── 2017/ │ │ │ ├── 01/ │ │ │ │ ├── data1.csv │ │ │ │ ├── data2.csv │ │ │ │ └── dataBadSchema.csv │ │ │ └── 02/ │ │ │ └── data1.csv │ │ ├── QuotingData.csv │ │ ├── README.md │ │ ├── SparseData.txt │ │ ├── Timeseries/ │ │ │ ├── A4Benchmark-TS1.csv │ │ │ ├── A4Benchmark-TS2.csv │ │ │ ├── anomaly_at_beginning.csv │ │ │ ├── anomaly_detection.csv │ │ │ ├── big_spike_data.csv │ │ │ ├── non_negative_case.csv │ │ │ ├── period_anomaly.csv │ │ │ ├── period_no_anomaly.csv │ │ │ ├── real_1.csv │ │ │ └── real_11.csv │ │ ├── Tiny/ │ │ │ ├── tiny1.txt │ │ │ └── tiny2.txt │ │ ├── Train-Tiny-28x28.txt │ │ ├── TrimData.csv │ │ ├── adult.tiny.with-schema.txt │ │ ├── adult.txt │ │ ├── adult.with-schema.txt │ │ ├── binary_synth_data_test.csv │ │ ├── binary_synth_data_train.csv │ │ ├── breast-cancer-withheader.txt │ │ ├── breast-cancer.txt │ │ ├── creditapproval_train.csv │ │ ├── datatypes.idv │ │ ├── dates1.csv │ │ ├── dates2.csv │ │ ├── generated_regression_dataset.csv │ │ ├── github-issues-train.tsv │ │ ├── home-depot-relevance-train.csv │ │ ├── housing.txt │ │ ├── images/ │ │ │ ├── fillmode.tsv │ │ │ ├── images.tsv │ │ │ ├── imagesmixedpixelformat.tsv │ │ │ └── object-detection/ │ │ │ └── fruit-detection-ten.tsv │ │ ├── iris-decimal-marker-as-comma.csv │ │ ├── iris-decimal-marker-as-comma.txt │ │ ├── iris-lgbm.txt │ │ ├── iris.data │ │ ├── iris.txt │ │ ├── lm.labels.txt │ │ ├── lm.sample.txt │ │ ├── missing_fields.csv │ │ ├── multiline-escapechar.csv │ │ ├── multiline.csv │ │ ├── ner-conll2012_english_v4_train.txt │ │ ├── ner-key-info.txt │ │ ├── newspaperchurn.csv │ │ ├── schema-codec-test.idv │ │ ├── shortsentiment.emd │ │ ├── small-sentiment-test.tsv │ │ ├── squad-train.tsv │ │ ├── taxi-fare-test.csv │ │ ├── taxi-fare-train.csv │ │ ├── topics.csv │ │ ├── trivial-test.tsv │ │ ├── trivial-train.tsv │ │ ├── type-conversion-boolean.txt │ │ ├── type-conversion.txt │ │ ├── type-samples.txt │ │ ├── wikipedia-detox-250-line-data-schema.txt │ │ ├── wikipedia-detox-250-line-data.tsv │ │ └── wikipedia-detox-250-line-test.tsv │ ├── run-night-build-tests.proj │ └── run-tests.proj └── tools-local/ ├── Microsoft.ML.AutoML.SourceGenerator/ │ ├── Constant.cs │ ├── EstimatorContract.cs │ ├── EstimatorTypeGenerator.cs │ ├── GlobalSuppressions.cs │ ├── Microsoft.ML.AutoML.SourceGenerator.csproj │ ├── SearchSpaceGenerator.cs │ ├── SweepableEstimatorFactoryGenerator.cs │ ├── SweepableEstimatorGenerator.cs │ ├── Template/ │ │ ├── EstimatorType.cs │ │ ├── EstimatorType.tt │ │ ├── SearchSpace.cs │ │ ├── SearchSpace.tt │ │ ├── SweepableEstimator.cs │ │ ├── SweepableEstimator.tt │ │ ├── SweepableEstimatorFactory.cs │ │ ├── SweepableEstimatorFactory.tt │ │ ├── SweepableEstimator_T_.cs │ │ └── SweepableEstimator_T_.tt │ └── Utils.cs ├── Microsoft.ML.InternalCodeAnalyzer/ │ ├── BaseTestClassAnalyzer.cs │ ├── BestFriendAnalyzer.cs │ ├── BestFriendOnPublicDeclarationsAnalyzer.cs │ ├── ContractsCheckAnalyzer.cs │ ├── ContractsCheckNameofFixProvider.cs │ ├── Descriptions.Designer.cs │ ├── Descriptions.resx │ ├── IMethodSymbolExtensions.cs │ ├── INamedTypeSymbolExtensions.cs │ ├── InstanceInitializerAnalyzer.cs │ ├── Microsoft.ML.InternalCodeAnalyzer.csproj │ ├── NameAnalyzer.cs │ ├── NameFixProvider.cs │ ├── ParameterVariableNameAnalyzer.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── RelaxTestNamingSuppressor.cs │ ├── SingleVariableDeclarationAnalyzer.cs │ ├── TypeParamNameAnalyzer.cs │ └── Utils.cs └── vstest.runsettings