Views
No views yet
| Property | Value |
|---|---|
| Parameters | ~9.7M |
| Model Size | ~3.7 MB (1.58-bit) |
| Hidden Size | 192 |
| Layers | 4 |
| Experts | 4 |
| Vocab Size | 32000 |
1import torch
2from safetensors.torch import load_file
3
4# Load model
5weights = load_file("model.safetensors")
6
7# Or use with the m2m-protocol package
8from m2m_protocol import M2MClient
9
10client = M2MClient(target_model="gpt-4")
11result = client.process(your_message)HydraBitNet(
(embeddings): Embedding(256, 256)
(encoder): ModuleList(
(0-5): 6 x TaskSpecializedMoELayer(
(gate): Linear(256, 4)
(experts): ModuleList(
(0): CompressionExpert
(1): SecurityExpert
(2): SemanticExpert
(3): GeneralExpert
)
)
)
(classifier): ModuleDict(
(compression): BitLinear(256, 4)
(security): BitLinear(256, 2)
)
)1@software{hydra_bitnet,
2 title = {Hydra BitNet: Ultra-Compact MoE for M2M Protocol},
3 author = {M2M Protocol Team},
4 year = {2026},
5 url = {https://github.com/OpenACI-AI/m2m-protocol}
6}