File size: 256 Bytes
354a706
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""
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"]