Text Generation
Transformers
Safetensors
English
emo
Mixture of Experts
mixture-of-experts
modularity
ablation
midtraining
conversational
custom_code
Instructions to use allenai/StdMoE_1b14b_1T_EmoAnnealed with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use allenai/StdMoE_1b14b_1T_EmoAnnealed with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="allenai/StdMoE_1b14b_1T_EmoAnnealed", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("allenai/StdMoE_1b14b_1T_EmoAnnealed", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use allenai/StdMoE_1b14b_1T_EmoAnnealed with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "allenai/StdMoE_1b14b_1T_EmoAnnealed" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "allenai/StdMoE_1b14b_1T_EmoAnnealed", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/allenai/StdMoE_1b14b_1T_EmoAnnealed
- SGLang
How to use allenai/StdMoE_1b14b_1T_EmoAnnealed with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "allenai/StdMoE_1b14b_1T_EmoAnnealed" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "allenai/StdMoE_1b14b_1T_EmoAnnealed", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "allenai/StdMoE_1b14b_1T_EmoAnnealed" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "allenai/StdMoE_1b14b_1T_EmoAnnealed", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use allenai/StdMoE_1b14b_1T_EmoAnnealed with Docker Model Runner:
docker model run hf.co/allenai/StdMoE_1b14b_1T_EmoAnnealed
Update README.md
Browse files
README.md
CHANGED
|
@@ -45,6 +45,12 @@ print(tokenizer.batch_decode(out, skip_special_tokens=True)[0])
|
|
| 45 |
}
|
| 46 |
```
|
| 47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
## Links
|
| 49 |
|
| 50 |
- Paper: https://arxiv.org/abs/2605.06663
|
|
|
|
| 45 |
}
|
| 46 |
```
|
| 47 |
|
| 48 |
+
|
| 49 |
+
## License
|
| 50 |
+
|
| 51 |
+
This model is licensed under Apache 2.0. It is intended for research and educational use in accordance with Ai2's [Responsible Use Guidelines](https://allenai.org/responsible-use)
|
| 52 |
+
|
| 53 |
+
|
| 54 |
## Links
|
| 55 |
|
| 56 |
- Paper: https://arxiv.org/abs/2605.06663
|