bge_finetune/config/__init__.py
2025-07-22 16:55:25 +08:00

14 lines
244 B
Python

"""
Configuration module for BGE fine-tuning
"""
from .base_config import BaseConfig
from .m3_config import BGEM3Config
from .reranker_config import BGERerankerConfig
__all__ = [
'BaseConfig',
'BGEM3Config',
'BGERerankerConfig'
]