This commit is contained in:
Neo
2026-02-04 21:39:01 +08:00
parent ee773a9b52
commit a3f4d04335
148 changed files with 31455 additions and 182 deletions

View File

@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
"""
指数算法任务模块
包含:
- RecallIndexTask: 客户召回指数计算任务
- IntimacyIndexTask: 客户-助教亲密指数计算任务
"""
from .recall_index_task import RecallIndexTask
from .intimacy_index_task import IntimacyIndexTask
__all__ = [
'RecallIndexTask',
'IntimacyIndexTask',
]