File size: 573 Bytes
8d18b7c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Zenith Model Wrappers for DeepSeek Base Models"""

from .zenith_model import ZenithModel, ZenithForCausalLM
from .adapters import LoRAAdapter, QLoRAAdapter, apply_lora
from .moe_wrapper import MoEConfig, convert_dense_to_moe
from .eq_adapter_wrapper import EQAdapterWrapper, FrustrationDetector, EmotionClassifier

__all__ = [
    "ZenithModel",
    "ZenithForCausalLM",
    "LoRAAdapter",
    "QLoRAAdapter",
    "apply_lora",
    "MoEConfig",
    "convert_dense_to_moe",
    "EQAdapterWrapper",
    "FrustrationDetector",
    "EmotionClassifier",
]