Instructions to use GGUFGuy/hyperdex-most-undertrained-slm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GGUFGuy/hyperdex-most-undertrained-slm with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="GGUFGuy/hyperdex-most-undertrained-slm")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("GGUFGuy/hyperdex-most-undertrained-slm") model = AutoModelForCausalLM.from_pretrained("GGUFGuy/hyperdex-most-undertrained-slm", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use GGUFGuy/hyperdex-most-undertrained-slm with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "GGUFGuy/hyperdex-most-undertrained-slm" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GGUFGuy/hyperdex-most-undertrained-slm", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/GGUFGuy/hyperdex-most-undertrained-slm
- SGLang
How to use GGUFGuy/hyperdex-most-undertrained-slm 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 "GGUFGuy/hyperdex-most-undertrained-slm" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GGUFGuy/hyperdex-most-undertrained-slm", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "GGUFGuy/hyperdex-most-undertrained-slm" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GGUFGuy/hyperdex-most-undertrained-slm", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use GGUFGuy/hyperdex-most-undertrained-slm with Docker Model Runner:
docker model run hf.co/GGUFGuy/hyperdex-most-undertrained-slm
hyperdex-most-undertrained-slm
A 49,995,456-parameter decoder-only language model pre-trained from scratch on fineweb-edu, using the HyperDex Trainer Space.
Architecture
A standard LlamaForCausalLM decoder-only transformer — SiLU MLP, RMSNorm,
rotary position embeddings, grouped-query attention, tied embeddings, no biases —
scaled down in width and depth to fit the parameter budget.
| Parameters | 49,995,456 |
| Hidden size | 448 |
| Layers | 12 |
| Attention heads | 8 (KV: 2) |
| FFN size | 2669 |
| Context length | 512 |
| Vocab | 2,048 (custom BPE trained on fineweb-edu) |
Training
| Tokens seen | 524,288 |
| Steps | 1 |
| Tokens / step | 524,288 |
| Optimizer | AdamW(0.9, 0.95) wd=0.1 clip=1.0 |
| LR schedule | warmup 2% + cosine to 10% (peak 6e-04) |
| Final loss | 8.0123 (ppl 3017.9) |
| Wall time | 0.2 min |
| Trained by | @GGUFGuy |
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
tok = AutoTokenizer.from_pretrained("GGUFGuy/hyperdex-most-undertrained-slm")
model = AutoModelForCausalLM.from_pretrained("GGUFGuy/hyperdex-most-undertrained-slm")
ids = tok("The mitochondria is", return_tensors="pt").input_ids
print(tok.decode(model.generate(ids, max_new_tokens=60, do_sample=True,
temperature=0.8, top_k=50)[0]))
Caveats
This is a small-scale research artifact. At this parameter count and token budget the model learns word shapes, common collocations and a little syntax — it is not a useful assistant and its output is not factual. It exists to make "pre-train a transformer from scratch" something you can actually watch happen.
- Downloads last month
- 32