8 lines
101 B
Python
8 lines
101 B
Python
from . import zscore
|
|
from . import ar
|
|
|
|
|
|
TRENDING_ALGORITHMS = {
|
|
'zscore': zscore,
|
|
'ar': ar
|
|
}
|