Instructions to use caiotheodoro/plumb-blended with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use caiotheodoro/plumb-blended with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # if on a CUDA device, also pip install mlx[cuda] # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("caiotheodoro/plumb-blended") prompt = "Once upon a time in" text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- MLX LM
How to use caiotheodoro/plumb-blended with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Generate some text mlx_lm.generate --model "caiotheodoro/plumb-blended" --prompt "Once upon a time"
- Atomic Chat
card: add limits (1.7B text policy, synthetic data, N=18 null)
Browse files
README.md
CHANGED
|
@@ -37,3 +37,7 @@ from mlx_lm.lora import load
|
|
| 37 |
path = snapshot_download("caiotheodoro/plumb-blended")
|
| 38 |
model, tokenizer = load("mlx-community/Qwen3-1.7B-4bit", adapter_path=path)
|
| 39 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
path = snapshot_download("caiotheodoro/plumb-blended")
|
| 38 |
model, tokenizer = load("mlx-community/Qwen3-1.7B-4bit", adapter_path=path)
|
| 39 |
```
|
| 40 |
+
|
| 41 |
+
## Limits
|
| 42 |
+
|
| 43 |
+
A 1.7B text policy, not the 27B multimodal production model. It reads the pay application as structured text rather than a rendered scan, so OCR is out of scope. All data is synthetic: generated AIA G702/G703 pay applications, not real contractor filings. CIs are 95% bootstrap, 10,000 resamples, seed 11, over the same 1000-task seed-777 benchmark. The clean-protocol N=18 arms and the pow-* / leaked-anchor grows are a null result and are not published as weights.
|