Zenith-7b-V1 / models /__init__.py
Zandy-Wandy's picture
Upload Zenith-7B model
8d18b7c verified
raw
history blame contribute delete
573 Bytes
"""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",
]