deepseek-moe / src /__init__.py
bird-of-paradise's picture
Initial commit
354a706
"""
DeepSeek Mixture of Experts Implementation
Copyright (c) 2025
Implementation of the Mixture of Experts mechanism from the DeepSeek-V2 paper.
"""
from .moe import Expert, MixtureOfExperts
__version__ = "0.1.0"
__all__ = ["Expert", "MixtureOfExperts"]