init commit

This commit is contained in:
ldy
2025-07-22 16:55:25 +08:00
commit 36003b83e2
67 changed files with 76613 additions and 0 deletions

13
config/__init__.py Normal file
View File

@@ -0,0 +1,13 @@
"""
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'
]