Instructions to use wmere/falcon_moe_1.5Base_test1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use wmere/falcon_moe_1.5Base_test1 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("wmere/falcon_moe_1.5Base_test1", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| from transformers import FalconH1Config | |
| """FalconH1MoE model configuration""" | |
| class FalconH1MoEConfig(FalconH1Config): | |
| def __init__( | |
| self, | |
| expert_num=8, | |
| topk=2, | |
| **kwargs, | |
| ): | |
| super().__init__(**kwargs) | |
| self.expert_num = expert_num | |
| self.topk = topk | |
| __all__ = ["FalconH1MoEConfig"] | |