mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-08-23 17:27:25 +00:00
9 lines
167 B
Python
9 lines
167 B
Python
from . import zscore
|
|
from . import ar
|
|
from . import variable_decay
|
|
|
|
TRENDING_ALGORITHMS = {
|
|
'zscore': zscore,
|
|
'ar': ar,
|
|
'variable_decay': variable_decay
|
|
}
|