69 references to DataOperationsCatalog
Microsoft.ML.AutoML (2)
API\AutoMLExperimentExtension.cs (1)
15
using static Microsoft.ML.
DataOperationsCatalog
;
AutoMLExperiment\AutoMLExperiment.cs (1)
17
using static Microsoft.ML.
DataOperationsCatalog
;
Microsoft.ML.AutoML.Tests (1)
AutoFitTests.cs (1)
20
using static Microsoft.ML.
DataOperationsCatalog
;
Microsoft.ML.Data (37)
Commands\CrossValidationCommand.cs (1)
308
var 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
24
public static IDataView LoadFromBinary(this
DataOperationsCatalog
catalog, IMultiStreamSource fileSource)
47
public static IDataView LoadFromBinary(this
DataOperationsCatalog
catalog, string path)
75
public 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>
17
public static DatabaseLoader CreateDatabaseLoader(this
DataOperationsCatalog
catalog,
28
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
30
public static DatabaseLoader CreateDatabaseLoader(this
DataOperationsCatalog
catalog,
38
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
39
public 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)"/>,
52
public 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)"/>,
84
public static TextLoader CreateTextLoader(this
DataOperationsCatalog
catalog,
95
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
113
public static TextLoader CreateTextLoader<TInput>(this
DataOperationsCatalog
catalog,
126
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
131
public static TextLoader CreateTextLoader<TInput>(this
DataOperationsCatalog
catalog,
140
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
160
public static IDataView LoadFromTextFile(this
DataOperationsCatalog
catalog,
189
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
199
public static IDataView LoadFromTextFile(this
DataOperationsCatalog
catalog, string path,
214
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
233
public static IDataView LoadFromTextFile<TInput>(this
DataOperationsCatalog
catalog,
253
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
258
public static IDataView LoadFromTextFile<TInput>(this
DataOperationsCatalog
catalog, string path,
270
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
285
public static void SaveAsText(this
DataOperationsCatalog
catalog,
MLContext.cs (1)
74
public
DataOperationsCatalog
Data { get; }
TrainCatalog.cs (2)
97
var splitColumn =
DataOperationsCatalog
.CreateSplitColumn(Environment, ref data, samplingKeyColumn, seed, fallbackInEnvSeed: true);
103
foreach (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)
57
var splitCol =
DataOperationsCatalog
.CreateSplitColumn(env, ref data, input.StratificationColumn);
PermutationFeatureImportance.cs (4)
136
var
dataOps = new DataOperationsCatalog(env);
195
var
dataOps = new DataOperationsCatalog(env);
246
var
dataOps = new DataOperationsCatalog(env);
302
var
dataOps = new DataOperationsCatalog(env);
TrainTestSplit.cs (1)
53
var splitCol =
DataOperationsCatalog
.CreateSplitColumn(env, ref data, input.StratificationColumn);
Microsoft.ML.PerformanceTests (1)
ImageClassificationBench.cs (1)
16
using static Microsoft.ML.
DataOperationsCatalog
;
Microsoft.ML.Samples (4)
Dynamic\SimpleDataViewImplementation.cs (1)
104
/// <see cref="
DataOperationsCatalog
Dynamic\Trainers\MulticlassClassification\ImageClassification\ImageClassificationDefault.cs (1)
13
using static Microsoft.ML.
DataOperationsCatalog
;
Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningEarlyStopping.cs (1)
14
using static Microsoft.ML.
DataOperationsCatalog
;
Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningTrainTestSplit.cs (1)
14
using static Microsoft.ML.
DataOperationsCatalog
;
Microsoft.ML.Samples.GPU (3)
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\ImageClassificationDefault.cs (1)
13
using static Microsoft.ML.
DataOperationsCatalog
;
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningEarlyStopping.cs (1)
14
using static Microsoft.ML.
DataOperationsCatalog
;
docs\samples\Microsoft.ML.Samples\Dynamic\Trainers\MulticlassClassification\ImageClassification\ResnetV2101TransferLearningTrainTestSplit.cs (1)
14
using 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)
23
using static Microsoft.ML.
DataOperationsCatalog
;
Microsoft.ML.Transforms (12)
CustomMappingCatalog.cs (2)
81
public static IDataView FilterByCustomPredicate<TSrc>(this
DataOperationsCatalog
catalog, IDataView input, Func<TSrc, bool> filterPredicate)
95
public 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>
30
public static SvmLightLoader CreateSvmLightLoader(this
DataOperationsCatalog
catalog,
46
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
49
public static SvmLightLoader CreateSvmLightLoaderWithFeatureNames(this
DataOperationsCatalog
catalog,
58
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
65
public static IDataView LoadFromSvmLightFile(this
DataOperationsCatalog
catalog,
86
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
89
public static IDataView LoadFromSvmLightFileWithFeatureNames(this
DataOperationsCatalog
catalog,
108
/// <param name="catalog">The <see cref="
DataOperationsCatalog
"/> catalog.</param>
120
public static void SaveInSvmLightFormat(this
DataOperationsCatalog
catalog,