Views
No views yet
model.safetensors with the matching tokenizer.json, runtime source, config, and runnable examples. A larger production Reframr line is being computed after this release, including tool-use and web-freshness data.reframr-analytical.model.safetensors: Reframr v1 computed-weight checkpoint.tokenizer.json: FrameToken tokenizer exported from the checkpoint metadata.config.json: Release metadata and tensor layout.generation_config.json: Recommended default generation settings.reframr/: CPU-first Reframr runtime source.examples/: Minimal CLI, JSONL, and Python usage examples.1python -m pip install -r requirements.txt
2python -m reframr generate \
3 --model model.safetensors \
4 --context "Who are you, and what makes you different from Transformer models?" \
5 --max-tokens 90 \
6 --temperature 0.92 \
7 --decode-top-k 72 \
8 --decode-top-p 0.921python -m reframr generate \
2 --model model.safetensors \
3 --system "Answer in two short paragraphs. Be direct and warm." \
4 --context "Explain why clean data matters when computing Reframr weights." \
5 --max-tokens 90 \
6 --temperature 0.9python -m reframr serve --model model.safetensors --max-tokens 961{"prompt":"Tell a short story about a glass library under the sea.","temperature":1.05,"decode_top_k":90,"max_tokens":120}
2{"system":"Use exactly one fitting emoji.","prompt":"Encourage a tired engineer without sounding generic.","max_tokens":70}1from pathlib import Path
2from reframr.model import ReframrModel
3
4root = Path(__file__).resolve().parent
5model = ReframrModel.load(root / "model.safetensors")
6
7text = model.generate_text(
8 "Who are you?",
9 max_tokens=80,
10 temperature=0.92,
11 top_k=72,
12 top_p=0.92,
13 repetition_penalty=1.18,
14)
15print(text)temperature: Higher values increase variation. Try 0.85 for focused answers and 1.05 for story or brainstorming prompts.--decode-top-k: Limits sampling to the strongest candidate set. Recommended range: 50 to 100.--decode-top-p: Nucleus cutoff. Recommended default: 0.92.--repetition-penalty: Penalizes repeated tokens. Recommended default: 1.18.--system: Adds a system instruction before the user prompt.--reasoning-mode: Supports none, deep, memory, and tool profiles in the runtime. The current public checkpoint is a base release; the dedicated tool/web-freshness line is still being computed.| Property | Reframr-RFM-v1-Base |
|---|---|
| Family | Reframr / Recurrent Flow Memory |
| Organization | OkeyMeta Ltd |
| Checkpoint kind | reframr-analytical |
| Attention stack | None |
| Transformer layers | None |
| Tokenizer | FrameToken |
| Weight file | model.safetensors |
| Runtime | CPU-first Reframr Python runtime |
| Embedding dim | 96 |
| State dim | 48 |
| State width | 576 |
| Output vocab rows | 2,793 |
| Tokenizer vocab size | 3,741 |