lbry-sdk/lbry/wallet/server/db/trending/__init__.py
Brendon J. Brewer 5f043b9a78 variable decay
2020-03-12 10:33:15 +13:00

10 lines
167 B
Python

from . import zscore
from . import ar
from . import variable_decay
TRENDING_ALGORITHMS = {
'zscore': zscore,
'ar': ar,
'variable_decay': variable_decay
}