MojoJolo / textteaser

TextTeaser is an automatic summarization algorithm.
MIT License
1.97k stars 251 forks source link

Which formula is this ? tell me why this formula are we using ? #22

Closed RahulKulhari closed 10 years ago

RahulKulhari commented 10 years ago

when using computscore method that time you are calculating

val totalScore = (titleFeature * 1.5 + keywordFrequency * 2.0 + sentenceLength * 0.5 + sentencePosition * 1.0) / 4.0

why are you multiplying title feature with 1.5 and keywordfrequency

if you have any research paper regarding this please tell me ?

mikkogozalo commented 10 years ago

I think those are just arbitrary numbers that worked well for him after doing some trial and error. @MojoJolo, is this correct?

MojoJolo commented 10 years ago

Yes. Those are the numbers I obtain in my research.