How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "theworker02/open-reason-small"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "theworker02/open-reason-small",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Use Docker
docker model run hf.co/theworker02/open-reason-small
Quick Links

Open Reason small (CPU)

This is a small GPT-2-style causal LM trained from scratch on the Open Reason SFT split. It is not a 1B model and is not theworker02/open-reason-1b.

  • Parameters (approx): 1334016
  • Steps: 200
  • Backend: cpu-host
  • CUDA used: False
  • Rows: 2348
  • Final loss: 6.095415115356445

Hardware: CPU (Docker when available). AMD GPU training is not used.

from transformers import AutoModelForCausalLM, AutoTokenizer
tok = AutoTokenizer.from_pretrained("theworker02/open-reason-small")
model = AutoModelForCausalLM.from_pretrained("theworker02/open-reason-small")
Downloads last month
138
Safetensors
Model size
1.33M params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train theworker02/open-reason-small