2 implementations of IPartitionedPathParser
Microsoft.ML.Parquet (2)
PartitionedPathParser.cs (2)
69internal sealed class SimplePartitionedPathParser : IPartitionedPathParser, ICanSaveModel 205internal sealed class ParquetPartitionedPathParser : IPartitionedPathParser, ICanSaveModel
6 references to IPartitionedPathParser
Microsoft.ML.Parquet (6)
PartitionedFileLoader.cs (2)
167private readonly IPartitionedPathParser _pathParser; 238ctx.LoadModel<IPartitionedPathParser, SignatureLoadModel>(_host, out _pathParser, FilePathSpecCtxName);
PartitionedPathParser.cs (4)
64internal interface IPartitionedPathParserFactory : IComponentFactory<IPartitionedPathParser> 66new IPartitionedPathParser CreateComponent(IHostEnvironment env); 87public IPartitionedPathParser CreateComponent(IHostEnvironment env) => new SimplePartitionedPathParser(env, this); 201public IPartitionedPathParser CreateComponent(IHostEnvironment env) => new ParquetPartitionedPathParser();