17 Downloads Updated 1 week ago
ollama run ArcOffical/pico-1b
A 1B-parameter dense language model optimized for reasoning and knowledge tasks.
For clarity, our model uses the tokenizer from Qwen 2 1.5B but has been trained from scratch — it is not a fine-tuned version of Qwen 2 1.5B.
PiCo 1B is a compact, high-performance language model with ~1.46 billion parameters. Despite its small size, it achieves competitive performance across reasoning, knowledge, and coding benchmarks, particularly excelling in science reasoning tasks.
| Attribute | Value |
|---|---|
| Model Size | ~1.46B parameters |
| Architecture | Dense transformer (decoder-only) |
| Context Length | 2048 tokens |
| Precision | FP32 / FP16 / Safetensors |
| License | Open-source |
PiCo 1B is evaluated against 31 open-source models in the 1B–2B parameter range across 7 standard benchmarks.
Measures general knowledge across 57 subjects including STEM, humanities, and social sciences.

Measures mathematical reasoning with grade-school level word problems.

Measures science reasoning with grade-level science questions (harder subset).

Measures basic science reasoning with grade-level science questions (easier subset).

Measures commonsense natural language inference with everyday scenarios.

Measures functional correctness of code generation across 164 programming problems.

Measures whether the model generates truthful answers rather than mimicking common misconceptions.

from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "pico-1b"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
prompt = "Explain the theory of relativity in simple terms."
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_length=200)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
| Aspect | Description |
|---|---|
| Architecture | Dense decoder-only transformer |
| Optimizer | AdamW |
| Learning Rate | Cosine schedule with warmup |
| Batch Size | Configurable per GPU setup |
| Training Framework | PyTorch + Hugging Face Transformers |
If you use PiCo 1B in your research or projects, please cite:
@misc{pico1b,
title={PiCo 1B: A Compact Language Model Optimized for Reasoning},
author={Arc Develop Team},
year={2026},
howpublished={\url{https://github.com/pico-llm/pico-1b}},
}
This model is released under an open-source license. Please see the LICENSE file for details.
Last updated: June 2026