Text Generation
paddlenlp
Safetensors
cubiczan-moe
Cubiczan
MoE
structured-reasoning
strategic-analysis
conversational
custom_code
Instructions to use Impactquadrant/Cubiczan-MoE-7B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- paddlenlp
How to use Impactquadrant/Cubiczan-MoE-7B with paddlenlp:
from paddlenlp.transformers import AutoTokenizer, CubiczanMoEForCausalLM tokenizer = AutoTokenizer.from_pretrained("Impactquadrant/Cubiczan-MoE-7B", from_hf_hub=True) model = CubiczanMoEForCausalLM.from_pretrained("Impactquadrant/Cubiczan-MoE-7B", from_hf_hub=True) - Notebooks
- Google Colab
- Kaggle
File size: 2,010 Bytes
0ae90a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | {
"model_type": "cubiczan-moe",
"tokenizer_class": "CubiczanTokenizer",
"auto_map": {
"AutoTokenizer": "tokenization_cubiczan.CubiczanTokenizer"
},
"bos_token": "<|endoftext|>",
"eos_token": "<|im_end|>",
"pad_token": "<|endoftext|>",
"unk_token": null,
"chat_template": "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
"clean_up_tokenization_spaces": false,
"model_max_length": 32768,
"added_tokens_decoder": {
"151643": {"content": "<|endoftext|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true},
"151644": {"content": "<|im_start|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true},
"151645": {"content": "<|im_end|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true},
"151646": {"content": "<|framework_start|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true},
"151647": {"content": "<|framework_end|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true},
"151648": {"content": "<|expert_route|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true},
"151649": {"content": "<|template_start|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true},
"151650": {"content": "<|template_end|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true},
"151651": {"content": "<|tlp_payload_start|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true},
"151652": {"content": "<|tlp_payload_end|>", "lstrip": false, "normalized": false, "rstrip": false, "single_word": false, "special": true}
}
}
|