9 lines
197 B
Python
9 lines
197 B
Python
"""
|
|
OLinear model implementation
|
|
"""
|
|
|
|
from .model import * # 导入model.py中的类和函数
|
|
|
|
# 如果有特定的类名,可以明确指定
|
|
__all__ = ['OLinear'] # 根据实际的类名调整
|