How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="Parallel-Reasoning/llama-sosp")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("Parallel-Reasoning/llama-sosp")
model = AutoModelForCausalLM.from_pretrained("Parallel-Reasoning/llama-sosp")
Quick Links

This repository contains the model described in the paper Learning Adaptive Parallel Reasoning with Language Models.

For more information, please refer to the github repository: https://github.com/Parallel-Reasoning/APR

Downloads last month
9
Safetensors
Model size
0.3B params
Tensor type
F16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Paper for Parallel-Reasoning/llama-sosp