Files
ZQYY.FQ-ETL/tasks/dws/index/__init__.py

29 lines
856 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- coding: utf-8 -*-
"""
指数算法任务模块
包含:
- WinbackIndexTask: 老客挽回指数 (WBI)
- NewconvIndexTask: 新客转化指数 (NCI)
- RecallIndexTask: 客户召回指数计算任务(旧版)
- IntimacyIndexTask: 客户-助教亲密指数计算任务
- MlManualImportTask: ML 人工台账导入任务
- RelationIndexTask: 关系指数计算任务RS/OS/MS/ML
"""
from .recall_index_task import RecallIndexTask
from .intimacy_index_task import IntimacyIndexTask
from .winback_index_task import WinbackIndexTask
from .newconv_index_task import NewconvIndexTask
from .ml_manual_import_task import MlManualImportTask
from .relation_index_task import RelationIndexTask
__all__ = [
'WinbackIndexTask',
'NewconvIndexTask',
'RecallIndexTask',
'IntimacyIndexTask',
'MlManualImportTask',
'RelationIndexTask',
]