69 references to DataOperationsCatalog
Microsoft.ML.AutoML (2)
API\AutoMLExperimentExtension.cs (1)
15using static Microsoft.ML.DataOperationsCatalog;
AutoMLExperiment\AutoMLExperiment.cs (1)
17using static Microsoft.ML.DataOperationsCatalog;
Microsoft.ML.AutoML.Tests (1)
AutoFitTests.cs (1)
20using static Microsoft.ML.DataOperationsCatalog;
Microsoft.ML.Data (37)
Commands\CrossValidationCommand.cs (1)
308var splitColumn = DataOperationsCatalog.CreateSplitColumn(Host, ref output, stratificationColumn);
DataLoadSave\Binary\BinaryLoaderSaverCatalog.cs (4)
13/// Collection of extension methods for the <see cref="DataOperationsCatalog"/> to create instances of 24public static IDataView LoadFromBinary(this DataOperationsCatalog catalog, IMultiStreamSource fileSource) 47public static IDataView LoadFromBinary(this DataOperationsCatalog catalog, string path) 75public static void SaveAsBinary(this DataOperationsCatalog catalog, IDataView data, Stream stream,
DataLoadSave\Database\DatabaseLoaderCatalog.cs (7)
10/// Collection of extension methods for the <see cref="DataOperationsCatalog"/> to read from databases. 15/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 17public static DatabaseLoader CreateDatabaseLoader(this DataOperationsCatalog catalog, 28/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 30public static DatabaseLoader CreateDatabaseLoader(this DataOperationsCatalog catalog, 38/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 39public static DatabaseLoader CreateDatabaseLoader<TInput>(this DataOperationsCatalog catalog)
DataLoadSave\Text\TextLoaderSaverCatalog.cs (21)
14/// Collection of extension methods for the <see cref="DataOperationsCatalog"/> to read from delimited text 22/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 32/// If the sample has been saved with ML.NET's <see cref="SaveAsText(DataOperationsCatalog, IDataView, Stream, char, bool, bool, bool, bool)"/>, 52public static TextLoader CreateTextLoader(this DataOperationsCatalog catalog, 77/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 81/// If the sample has been saved with ML.NET's <see cref="SaveAsText(DataOperationsCatalog, IDataView, Stream, char, bool, bool, bool, bool)"/>, 84public static TextLoader CreateTextLoader(this DataOperationsCatalog catalog, 95/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 113public static TextLoader CreateTextLoader<TInput>(this DataOperationsCatalog catalog, 126/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 131public static TextLoader CreateTextLoader<TInput>(this DataOperationsCatalog catalog, 140/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 160public static IDataView LoadFromTextFile(this DataOperationsCatalog catalog, 189/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 199public static IDataView LoadFromTextFile(this DataOperationsCatalog catalog, string path, 214/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 233public static IDataView LoadFromTextFile<TInput>(this DataOperationsCatalog catalog, 253/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 258public static IDataView LoadFromTextFile<TInput>(this DataOperationsCatalog catalog, string path, 270/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 285public static void SaveAsText(this DataOperationsCatalog catalog,
MLContext.cs (1)
74public DataOperationsCatalog Data { get; }
TrainCatalog.cs (2)
97var splitColumn = DataOperationsCatalog.CreateSplitColumn(Environment, ref data, samplingKeyColumn, seed, fallbackInEnvSeed: true); 103foreach (var split in DataOperationsCatalog.CrossValidationSplit(Environment, data, splitColumn, numFolds))
Training\TrainerInputBase.cs (1)
44/// is that the user will use the <see cref="DataOperationsCatalog.Cache(IDataView, string[])"/> or other method
Microsoft.ML.EntryPoints (6)
CVSplit.cs (1)
57var splitCol = DataOperationsCatalog.CreateSplitColumn(env, ref data, input.StratificationColumn);
PermutationFeatureImportance.cs (4)
136var dataOps = new DataOperationsCatalog(env); 195var dataOps = new DataOperationsCatalog(env); 246var dataOps = new DataOperationsCatalog(env); 302var dataOps = new DataOperationsCatalog(env);
TrainTestSplit.cs (1)
53var splitCol = DataOperationsCatalog.CreateSplitColumn(env, ref data, input.StratificationColumn);
Microsoft.ML.PerformanceTests (1)
ImageClassificationBench.cs (1)
16using static Microsoft.ML.DataOperationsCatalog;
Microsoft.ML.Samples (4)
Dynamic\SimpleDataViewImplementation.cs (1)
104/// <see cref="DataOperationsCatalog
Dynamic\Trainers\MulticlassClassification\ImageClassification\ImageClassificationDefault.cs (1)
13using static Microsoft.ML.DataOperationsCatalog;
Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningEarlyStopping.cs (1)
14using static Microsoft.ML.DataOperationsCatalog;
Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningTrainTestSplit.cs (1)
14using static Microsoft.ML.DataOperationsCatalog;
Microsoft.ML.Samples.GPU (3)
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\ImageClassificationDefault.cs (1)
13using static Microsoft.ML.DataOperationsCatalog;
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningEarlyStopping.cs (1)
14using static Microsoft.ML.DataOperationsCatalog;
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningTrainTestSplit.cs (1)
14using static Microsoft.ML.DataOperationsCatalog;
Microsoft.ML.SamplesUtils (2)
SamplesDatasetUtils.cs (2)
225/// calling <see cref="DataOperationsCatalog.CreateEnumerable{TRow}(IDataView, bool, bool, SchemaDefinition)"/> via on <see cref="MLContext"/>. 236/// calling <see cref="DataOperationsCatalog.CreateEnumerable{TRow}(IDataView, bool, bool, SchemaDefinition)"/> via on <see cref="MLContext"/>.
Microsoft.ML.TensorFlow.Tests (1)
TensorflowTests.cs (1)
23using static Microsoft.ML.DataOperationsCatalog;
Microsoft.ML.Transforms (12)
CustomMappingCatalog.cs (2)
81public static IDataView FilterByCustomPredicate<TSrc>(this DataOperationsCatalog catalog, IDataView input, Func<TSrc, bool> filterPredicate) 95public static IDataView FilterByStatefulCustomPredicate<TSrc, TState>(this DataOperationsCatalog catalog, IDataView input, Func<TSrc, TState, bool> filterPredicate,
SvmLight\SvmLightLoaderSaverCatalog.cs (10)
16/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 30public static SvmLightLoader CreateSvmLightLoader(this DataOperationsCatalog catalog, 46/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 49public static SvmLightLoader CreateSvmLightLoaderWithFeatureNames(this DataOperationsCatalog catalog, 58/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 65public static IDataView LoadFromSvmLightFile(this DataOperationsCatalog catalog, 86/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 89public static IDataView LoadFromSvmLightFileWithFeatureNames(this DataOperationsCatalog catalog, 108/// <param name="catalog">The <see cref="DataOperationsCatalog"/> catalog.</param> 120public static void SaveInSvmLightFormat(this DataOperationsCatalog catalog,