16 references to GetBenchmarkDataPathAndEnsureData
Microsoft.ML.PerformanceTests (16)
HashBench.cs (1)
103var modelPath = GetBenchmarkDataPathAndEnsureData("backcompat/MurmurHashV1.zip");
KMeansAndLogisticRegressionBench.cs (1)
16private readonly string _dataPath = GetBenchmarkDataPathAndEnsureData("adult.with-schema.txt");
Numeric\Ranking.cs (5)
25_mslrWeb10kValidate = GetBenchmarkDataPathAndEnsureData(TestDatasets.MSLRWeb.validFilename, TestDatasets.MSLRWeb.path); 26_mslrWeb10kTrain = GetBenchmarkDataPathAndEnsureData(TestDatasets.MSLRWeb.trainFilename, TestDatasets.MSLRWeb.path); 75_mslrWeb10kTest = GetBenchmarkDataPathAndEnsureData(TestDatasets.MSLRWeb.testFilename, TestDatasets.MSLRWeb.path); 76_mslrWeb10kValidate = GetBenchmarkDataPathAndEnsureData(TestDatasets.MSLRWeb.validFilename, TestDatasets.MSLRWeb.path); 77_mslrWeb10kTrain = GetBenchmarkDataPathAndEnsureData(TestDatasets.MSLRWeb.trainFilename, TestDatasets.MSLRWeb.path);
PredictionEngineBench.cs (3)
36string irisDataPath = GetBenchmarkDataPathAndEnsureData("iris.txt"); 75string sentimentDataPath = GetBenchmarkDataPathAndEnsureData("wikipedia-detox-250-line-data.tsv"); 110string breastCancerDataPath = GetBenchmarkDataPathAndEnsureData("breast-cancer.txt");
RffTransform.cs (1)
22_dataPathDigits = GetBenchmarkDataPathAndEnsureData(TestDatasets.Digits.trainFilename, TestDatasets.Digits.path);
StochasticDualCoordinateAscentClassifierBench.cs (2)
20private readonly string _dataPath = GetBenchmarkDataPathAndEnsureData("iris.txt"); 21private readonly string _sentimentDataPath = GetBenchmarkDataPathAndEnsureData("wikipedia-detox-250-line-data.tsv");
Text\MultiClassClassification.cs (2)
23_dataPathWiki = GetBenchmarkDataPathAndEnsureData(TestDatasets.WikiDetox.trainFilename, TestDatasets.WikiDetox.path); 100_dataPathWiki = GetBenchmarkDataPathAndEnsureData(TestDatasets.WikiDetox.trainFilename, TestDatasets.WikiDetox.path);
TextPredictionEngineCreation.cs (1)
25GetBenchmarkDataPathAndEnsureData("wikipedia-detox-250-line-data.tsv"), hasHeader: true);