Views
No views yet
| Benchmark | MoE (383.5M) | Dense (384.5M) |
|---|---|---|
| ARC-Easy | 43.6% | 45.9% |
| HellaSwag | 28.7% | 30.1% |
| MMLU | 23.0% | 23.1% |
model.safetensors - Model weightsmodel_config.yaml - Architecture configurationconfig.json - HuggingFace-compatible config1from complexity.config import ModelConfig
2from complexity.models import ComplexityModel
3from safetensors.torch import load_file
4
5config = ModelConfig.load("model_config.yaml")
6model = ComplexityModel(config)
7state = load_file("model.safetensors", device="cpu")
8model.load_state_dict(state, strict=False)
9model.eval().cuda()