5 instantiations of CustomShapeInfo
Microsoft.ML.OnnxTransformer (5)
OnnxTransform.cs (5)
196loadedCustomShapeInfos[i] = new CustomShapeInfo() { Name = name, Shape = shape }; 321CustomShapeInfos = shapeDictionary?.Select(pair => new CustomShapeInfo(pair.Key, pair.Value)).ToArray(), 347CustomShapeInfos = shapeDictionary?.Select(pair => new CustomShapeInfo(pair.Key, pair.Value)).ToArray(), 377CustomShapeInfos = shapeDictionary?.Select(pair => new CustomShapeInfo(pair.Key, pair.Value)).ToArray(), 409CustomShapeInfos = shapeDictionary?.Select(pair => new CustomShapeInfo(pair.Key, pair.Value)).ToArray(),
6 references to CustomShapeInfo
Microsoft.ML.OnnxTransformer (6)
OnnxTransform.cs (6)
47/// <see cref="CustomShapeInfo"/> is useful because sometime we want to overwrite unknown 89public CustomShapeInfo[] CustomShapeInfos; 188CustomShapeInfo[] loadedCustomShapeInfos = null; 191loadedCustomShapeInfos = new CustomShapeInfo[customShapeInfosLength]; 249foreach (var customShape in options.CustomShapeInfos) 441var info = _options.CustomShapeInfos[i];