diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/helpers.cr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helpers.cr b/src/helpers.cr index 27c49c6e..b260ec9b 100644 --- a/src/helpers.cr +++ b/src/helpers.cr @@ -195,7 +195,7 @@ def rank_videos(db, n) published = rs.read(Time) # Exponential decay, older videos tend to rank lower - temperature = wilson_score * Math.exp(-0.02*((Time.now - published).hours)) + temperature = wilson_score * Math.exp(-0.000005*((Time.now - published).total_minutes)) top << {temperature, id} end end |
