mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-08-27 15:31:29 +00:00
8 lines
101 B
Python
8 lines
101 B
Python
from . import zscore
|
|
from . import ar
|
|
|
|
|
|
TRENDING_ALGORITHMS = {
|
|
'zscore': zscore,
|
|
'ar': ar
|
|
}
|