File size: 528 Bytes
beb6a05 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Model Card: Tiny Add2 LLM 10MB
## Purpose
A small addition-only model for exactly two non-negative integers.
## Architecture
This is a lookup-table style mini model, not a general LLM. The model stores all sums for numbers from `0` to `2199` in a 10 MiB binary file.
## Strength
- Exact answers for supported range
- Very low CPU/RAM
- Works offline
- Simple code
## Weakness
- Not a real chatbot
- No reasoning outside two-number addition
- Default range is only `0..2199`
## Example
Input: `12 + 30`
Output: `42`
|