public void SetUp() { string sourcePath = @"C:\_current\development\data\isr\testindex\source\"; string indexPath = @"C:\_current\development\data\isr\testindex\index\"; i.DataLoader dataLoader = new i.DataLoader(sourcePath); i.IndexBuilder indexBuilder = new i.IndexBuilder(dataLoader, indexPath); indexBuilder.BuildIndex(); index = new d.Index(indexPath); }
public DocNormLoader(DataLoader dataLoader, float[] idfs) { this.dataLoader = dataLoader; this.idfs = idfs; }
public IndexBuilder(DataLoader dataLoader, string targetDirectoryPath) { this.dataLoader = dataLoader; this.targetDirectoryPath = targetDirectoryPath; calculateIDFs(); }
public void SetUp() { loader = new i.DataLoader(EnvironmentBuilder.SOURCE_DIRECTORY); }