generation5 is an open-weight model from Bayu E. Halim, released under MIT License. It has 24,832 parameters and a 512-token context. At 16-bit it needs about 0 GB of GPU memory, which fits on 1x MI300X from $1.85 an hour, at the lowest prices in the SAVRN Index.
A research-oriented ViT prototype targeting Generation. The included giant setup documents defaults and file formats without presenting unverified performance numbers. - The Python file contains the model and runnable example or training entry point.
Runs On
What it takes to serve generation5 (24,832 parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.
| Precision | Weights | Memory needed | Cheapest setup | Per hour | Also fits |
|---|---|---|---|---|---|
| 16-bit | 0.0 GB | 0.0 GB | 1x MI300X (192 GB) Vultr |
$1.85 | 1x H100 $1.99 · 1x MI325X $2.00 |
| 8-bit | 0.0 GB | 0.0 GB | 1x MI300X (192 GB) Vultr |
$1.85 | 1x H100 $1.99 · 1x MI325X $2.00 |
| 4-bit | 0.0 GB | 0.0 GB | 1x MI300X (192 GB) Vultr |
$1.85 | 1x H100 $1.99 · 1x MI325X $2.00 |
Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 19, 2026.
generation5 on every accelerator the SAVRN Index prices, at every precision
Model Card
By Bayu E. Halim, published under mit, revision 32afb5588326.
A research-oriented ViT prototype targeting Generation. The included giant setup documents defaults and file formats without presenting unverified performance numbers. - The Python file contains the model and runnable example or training entry point. - config.json records the generated architecture settings. - trainingargs.json records the default experiment recipe. - model.safetensors is a valid initialization checkpoint for smoke tests; it is not presented as a trained benchmark checkpoint. - No benchmark score is claimed in this repository. The included configuration uses lamb with a step schedule. These are starting values in the script, not evidence of a completed run. For a meaningful…
Read Bayu E. Halim's full model card
ViT for Generation
Overview
A research-oriented ViT prototype targeting Generation. The included giant setup documents defaults and file formats without presenting unverified performance numbers.
Repository status
- The Python file contains the model and runnable example or training entry point.
config.jsonrecords the generated architecture settings.training_args.jsonrecords the default experiment recipe.model.safetensorsis a valid initialization checkpoint for smoke tests; it is not presented as a trained benchmark checkpoint.- No benchmark score is claimed in this repository.
Architecture
| Item | Value |
|---|---|
| Architecture | ViT |
| Scale | giant |
| Attention | sliding window |
| Fusion | low rank |
| Activation | gelu tanh |
| Normalization | groupnorm |
Default experiment recipe
The included configuration uses lamb with a step schedule. These are starting values in the script, not evidence of a completed run. For a meaningful evaluation, train all baselines with the same data exposure, tuning budget, and random seeds.
Quick check
python predict.py --help
Inspect the script's __main__ block for its generated smoke-test example. Because this is a custom implementation, generic automatic loading APIs require an explicit adapter before use.
Evaluation guidance
A useful first evaluation would use a task-specific held-out set, report the task metric across at least three seeds, and include a matched-capacity baseline. Keep training logs and environment versions with any published result.
Limitations
The initialization checkpoint has not been trained or audited for robustness, fairness, or domain transfer. The implementation should be treated as an experimental starting point. Results from a future trained checkpoint must be documented separately from the defaults shipped here.
Files
predict.py— primary artifactREADME.md— this documentationconfig.json— architecture configurationtraining_args.json— default experiment settingsmodel.safetensors— initialization checkpoint
License
Released under mit. Review the source-data terms separately when this repository is used with external datasets.
Configuration
- Architecture
- CustomResearchModel
- Context length (tokens)
- 512
- Layers
- 8
- Hidden size
- 192
- Feed-forward size
- 384
- Attention heads
- 2
- Model type
- vit
Identity and Version
- Repository
- halimbayu/generation5
- Publisher
- Bayu E. Halim
- Task
- Not stated by the source
- Modality
- Other
- Library
- Not stated by the source
- Parameters
- 24,832 parameters
- Languages
- vit
- Revision
- 32afb5588326f09999323fb171754c4c873d4f79
- First published
- 2026-09-18
- Last updated
- 2026-09-18
Files and Weights
6 files, 109.0 KB in total. The weights are 1 file totalling 99.8 KB in safetensors.
Every file
| File | Type | Size | SHA-256 |
|---|---|---|---|
| model.safetensors | Weights | 99.8 KB | 1758a04d5fd5 |
| config.json | Configuration | 429 B | — |
| predict.py | Configuration | 4.6 KB | — |
| training_args.json | Configuration | 184 B | — |
| README.md | Documentation | 2.4 KB | — |
| .gitattributes | Repository | 1.5 KB | — |
License and Download
- License
- mit
- Access
- Open weights, no gate
- Download size
- 99.8 KB
Released by Bayu E. Halim through its official repository on Hugging Face. Read the license.
Memory Requirements
| Precision | Weights in memory |
|---|---|
| As published | 99.8 KB |
| 16-bit | 0.0 GB |
| 8-bit | 0.0 GB |
| 4-bit | 0.0 GB |
Weights only, from the published parameter count; the key-value cache and runtime add to this.
Questions About generation5
How much GPU memory does generation5 need?
About 0 GB at 16-bit and 0 GB at 4-bit: the weights (24,832 parameters) plus a working margin. A long context needs more.
What is the cheapest GPU to run generation5 on?
At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.
Can I use generation5 commercially?
Yes. generation5 is released under MIT License. The MIT License is a short permissive license. It permits commercial use, modification and redistribution, provided the copyright notice and permission notice are included.
What is generation5's context length?
512 tokens, from the maximum position embeddings in its published configuration.