Instructions to use mtzig/debug with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mtzig/debug with Transformers:
# Load model directly from transformers import NanoGPT model = NanoGPT.from_pretrained("mtzig/debug", dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 344 Bytes
7f20c05 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"architectures": [
"NanoGPT"
],
"bias": true,
"block_size": 256,
"dropout": 0.0,
"mlp_dim": 4,
"model_type": "nanogpt",
"n_embd": 384,
"n_head": 6,
"n_layer": 6,
"nonlinearity": "RELU",
"torch_dtype": "float32",
"transformers_version": "4.50.3",
"use_NoPE": true,
"use_layernorm": true,
"vocab_size": 14
}
|