17 lines
339 B
Python
17 lines
339 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
指数算法任务模块
|
|
|
|
包含:
|
|
- RecallIndexTask: 客户召回指数计算任务
|
|
- IntimacyIndexTask: 客户-助教亲密指数计算任务
|
|
"""
|
|
|
|
from .recall_index_task import RecallIndexTask
|
|
from .intimacy_index_task import IntimacyIndexTask
|
|
|
|
__all__ = [
|
|
'RecallIndexTask',
|
|
'IntimacyIndexTask',
|
|
]
|