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="dmisrael/ar-dream7b-sft-16ep", trust_remote_code=True)
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("dmisrael/ar-dream7b-sft-16ep", trust_remote_code=True, dtype="auto")
Quick Links

dmisrael/ar-dream7b-sft-16ep

Dream 7B trained with autoregressive SFT for 16 epochs.

Citation

If you use this model, please cite the Planned Diffusion paper:

@misc{israel2025planneddiffusion,
      title={Planned Diffusion}, 
      author={Daniel Israel and Tian Jin and Ellie Cheng and Guy Van den Broeck and Aditya Grover and Suvinay Subramanian and Michael Carbin},
      year={2025},
      eprint={2510.18087},
      archivePrefix={arXiv},
      primaryClass={cs.AI},
      url={https://arxiv.org/abs/2510.18087}, 
}
Downloads last month
4
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Paper for dmisrael/ar-dream7b-sft-16ep