File size: 367 Bytes
07cb7d3
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""数据源契约兼容入口。

数据源协议已迁移到 deep_learning.data.spec。
这个文件保留旧导入路径,避免已有代码直接从 deep_learning.data.base 导入时失效。
"""

from .spec import SupervisedDataSource, TextGenerationDataSource, TokenizerBundle

__all__ = ["SupervisedDataSource", "TextGenerationDataSource", "TokenizerBundle"]