Displaying 2 results from an estimated 2 matches for "wi_low".
Did you mean:
w_low
2013 Jun 20
2
Dealing with negative weights
Hello guys. I am currently working on the DLH weighting scheme .The formula
for DLH is very complex and it ends up giving negative weights to some
documents because of the formula.Due to this,inspite of having
occurence/occurences of the keyword, the documents with negative weights
don't show up in the results at all. Please can I get some help on how to
deal with this ? Or should I just leave
2013 Jun 22
2
Dealing with negative weights
...> If we have a lower bound for W(t,d):
>
> (a) W_low(t) <= W(t,d) for all d
>
> And it's negative (or if the weight for a given term is always >= 0,
> just make this lower bound zero):
>
> (b) W_low(t) <= 0
>
> And similarly for Wi(d):
>
> (c) Wi_low <= Wi(d) for all d
>
> And let's only adjust Wi if we have to:
>
> (d) Wi_low <= 0
>
> Then you can transform your weighting scheme to this one:
>
> W'(t,d) = W(t,d) - W_low(t)
> then: W'(t,d) >= 0 (from (a))
>
> Wi'(d) = Wi(d) - W...