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: 506 Bytes
0ae90a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | {
"_from_model_config": true,
"bos_token_id": 151643,
"eos_token_id": 151645,
"pad_token_id": 151643,
"do_sample": true,
"temperature": 0.1,
"top_p": 0.9,
"top_k": 40,
"repetition_penalty": 1.05,
"max_new_tokens": 4096,
"max_length": 32768,
"transformers_version": "4.46.0",
"cubiczan_config": {
"framework_mode": "auto",
"strict_template": true,
"structured_mode_temperature": 0.1,
"exploratory_mode_temperature": 0.6,
"framework_enforcement": "STRICT"
}
}
|