45 references to RegisterAssembly
Microsoft.ML.Core (2)
ComponentModel\AssemblyLoadingUtils.cs (1)
259catalog.RegisterAssembly(assembly);
Data\ModelLoading.cs (1)
289catalog.RegisterAssembly(assembly);
Microsoft.ML.Core.Tests (14)
UnitTests\TestCustomTypeRegister.cs (1)
223ML.ComponentCatalog.RegisterAssembly(typeof(AlienFusionProcess).Assembly);
UnitTests\TestEntryPoints.cs (13)
40Env.ComponentCatalog.RegisterAssembly(typeof(ExponentialAverageTransform).Assembly); 327Env.ComponentCatalog.RegisterAssembly(typeof(LightGbmBinaryModelParameters).Assembly); 328Env.ComponentCatalog.RegisterAssembly(typeof(TensorFlowTransformer).Assembly); 329Env.ComponentCatalog.RegisterAssembly(typeof(ImageLoadingTransformer).Assembly); 330Env.ComponentCatalog.RegisterAssembly(typeof(SymbolicSgdLogisticRegressionBinaryTrainer).Assembly); 331Env.ComponentCatalog.RegisterAssembly(typeof(SaveOnnxCommand).Assembly); 332Env.ComponentCatalog.RegisterAssembly(typeof(TimeSeriesProcessingEntryPoints).Assembly); 333Env.ComponentCatalog.RegisterAssembly(typeof(ParquetLoader).Assembly); 2789Env.ComponentCatalog.RegisterAssembly(typeof(LightGbmBinaryModelParameters).Assembly); 2796Env.ComponentCatalog.RegisterAssembly(typeof(LightGbmBinaryModelParameters).Assembly); 6475Env.ComponentCatalog.RegisterAssembly(typeof(TensorFlowTransformer).Assembly); 6491Env.ComponentCatalog.RegisterAssembly(typeof(TensorFlowTransformer).Assembly); 6674Env.ComponentCatalog.RegisterAssembly(typeof(LightGbmBinaryModelParameters).Assembly);
Microsoft.ML.PerformanceTests (8)
Helpers\EnvironmentFactory.cs (8)
23environment.ComponentCatalog.RegisterAssembly(typeof(TLoader).Assembly); 24environment.ComponentCatalog.RegisterAssembly(typeof(TTransformer).Assembly); 25environment.ComponentCatalog.RegisterAssembly(typeof(TTrainer).Assembly); 39environment.ComponentCatalog.RegisterAssembly(typeof(TEvaluator).Assembly); 40environment.ComponentCatalog.RegisterAssembly(typeof(TLoader).Assembly); 41environment.ComponentCatalog.RegisterAssembly(typeof(TTransformer).Assembly); 42environment.ComponentCatalog.RegisterAssembly(typeof(TTrainer).Assembly); 44environment.ComponentCatalog.RegisterAssembly(typeof(OneHotEncodingTransformer).Assembly);
Microsoft.ML.Predictor.Tests (2)
TestPredictors.cs (2)
45environment.ComponentCatalog.RegisterAssembly(typeof(LightGbmBinaryModelParameters).Assembly); 46environment.ComponentCatalog.RegisterAssembly(typeof(SymbolicSgdLogisticRegressionBinaryTrainer).Assembly);
Microsoft.ML.Samples (1)
Dynamic\Transforms\CustomMappingSaveAndLoad.cs (1)
49mlContext.ComponentCatalog.RegisterAssembly(typeof(
Microsoft.ML.TestFramework (10)
DataPipe\Parquet.cs (1)
16Env.ComponentCatalog.RegisterAssembly(typeof(ParquetLoader).Assembly);
DataPipe\PartitionedFileLoaderTests.cs (1)
17Env.ComponentCatalog.RegisterAssembly(typeof(ParquetLoader).Assembly);
EnvironmentExtensions.cs (8)
20env.ComponentCatalog.RegisterAssembly(typeof(TextLoader).Assembly); // ML.Data 21env.ComponentCatalog.RegisterAssembly(typeof(LinearModelParameters).Assembly); // ML.StandardTrainers 22env.ComponentCatalog.RegisterAssembly(typeof(OneHotEncodingTransformer).Assembly); // ML.Transforms 23env.ComponentCatalog.RegisterAssembly(typeof(FastTreeBinaryModelParameters).Assembly); // ML.FastTree 24env.ComponentCatalog.RegisterAssembly(typeof(EnsembleModelParameters).Assembly); // ML.Ensemble 25env.ComponentCatalog.RegisterAssembly(typeof(KMeansModelParameters).Assembly); // ML.KMeansClustering 26env.ComponentCatalog.RegisterAssembly(typeof(PcaModelParameters).Assembly); // ML.PCA 27env.ComponentCatalog.RegisterAssembly(typeof(CVSplit).Assembly); // ML.EntryPoints
Microsoft.ML.Tests (4)
ExpressionLanguageTests\ExpressionLanguageTests.cs (1)
50Env.ComponentCatalog.RegisterAssembly(typeof(TestFuncs1).Assembly);
OnnxConversionTest.cs (1)
738Env.ComponentCatalog.RegisterAssembly(typeof(OnnxExportExtensions).Assembly);
Scenarios\Api\CookbookSamples\CookbookSamplesDynamicApi.cs (1)
759newContext.ComponentCatalog.RegisterAssembly(typeof(CustomMappings).Assembly);
Transformers\CustomMappingTests.cs (1)
74ML.ComponentCatalog.RegisterAssembly(typeof(MyLambda).Assembly);
Microsoft.ML.TimeSeries.Tests (1)
TimeSeries.cs (1)
20Env.ComponentCatalog.RegisterAssembly(typeof(ExponentialAverageTransform).Assembly);
Microsoft.ML.Transforms (3)
CustomMappingCatalog.cs (2)
29/// using <see cref="ComponentCatalog.RegisterAssembly(System.Reflection.Assembly, bool)"/>.</param> 63/// using <see cref="ComponentCatalog.RegisterAssembly(System.Reflection.Assembly, bool)"/>.</param>
LambdaTransform.cs (1)
67env.ComponentCatalog.RegisterAssembly(assembly);