Upload __init__.py with huggingface_hub
Browse files- __init__.py +17 -0
__init__.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from .eigen_moe import (
|
| 2 |
+
DEFAULT_HUB_CHECKPOINTS,
|
| 3 |
+
HFEigenMoE,
|
| 4 |
+
EigenMoE,
|
| 5 |
+
MoEConfig,
|
| 6 |
+
build,
|
| 7 |
+
default_hub_checkpoint_filename,
|
| 8 |
+
)
|
| 9 |
+
|
| 10 |
+
__all__ = [
|
| 11 |
+
"DEFAULT_HUB_CHECKPOINTS",
|
| 12 |
+
"HFEigenMoE",
|
| 13 |
+
"EigenMoE",
|
| 14 |
+
"MoEConfig",
|
| 15 |
+
"build",
|
| 16 |
+
"default_hub_checkpoint_filename",
|
| 17 |
+
]
|