14 lines
244 B
Python
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'
|
|
]
|