Reinforcement Learning
Transformers
Safetensors
English
chess
mamba
Mixture of Experts
kiyengine
ssm
mixture-of-experts
custom_code
Instructions to use Kiy-K/KiyEngine-V3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Kiy-K/KiyEngine-V3 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Kiy-K/KiyEngine-V3", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Upload config.json with huggingface_hub
Browse files- config.json +15 -0
config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"auto_map": {
|
| 3 |
+
"AutoConfig": "configuration_kiyengine.KiyEngineConfig",
|
| 4 |
+
"AutoModel": "modeling_kiyengine.KiyEngineModel"
|
| 5 |
+
},
|
| 6 |
+
"d_conv": 4,
|
| 7 |
+
"d_model": 384,
|
| 8 |
+
"d_state": 16,
|
| 9 |
+
"expansion_factor": 2,
|
| 10 |
+
"n_experts": 8,
|
| 11 |
+
"n_layers": 4,
|
| 12 |
+
"top_k": 2,
|
| 13 |
+
"transformers_version": "4.57.1",
|
| 14 |
+
"vocab_size": 768
|
| 15 |
+
}
|