63646566676869
/** * The default constructor. * */ public Normalisation(){ idf = new Idf(); }
8889909192939495
} /** * A default constructor for the class that initialises the idf attribute. */ public QueryExpansionModel() { idf = new Idf(); this.initialise(); }
51525354555657
protected double numberOfTokens; /** * A default constructor that initialises the idf i attribute */ public BasicModel() { i = new Idf(); }