Hi,
I'm a little bit confused with what are the default values for some options available for BuildIndex...
(1) For termweight : I thought that default value was IDF. It seems to be confirmed by the following line in FlagConfig.java :
private TermWeight termweight = TermWeight.IDF;
But the next (comment) line makes me hesitate...
/** Term weighting used when constructing document vectors, default value {@link TermWeight#NONE} */
--> Is IDF or NONE the default value for termweighting ?
(2) For -elementalmethod flag, my impression was that BuildIndex uses "random generation" but I saw in FlagConfig.java
the following line :
private ElementalGenerationMethod elementalmethod = ElementalGenerationMethod.CONTENTHASH;
--> So is "Hashing generation" the default ?
And a last question : if I want to use deterministic elemental vectors and have reproducible results from run to run, do I need to use hashing generation or orthographic generation?
Thanks for the help!
Best regards,
Laurent