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