Views
No views yet
1from transformers import AutoModelForMaskedLM
2
3# model_config_overrides = {} # Use this to optionally override config parameters
4model = AutoModelForMaskedLM.from_pretrained(
5 "kuleshov-group/e2d2-owt",
6 trust_remote_code=True,
7 # **model_config_overrides,
8)Skylion007/openwebtextgpt2 tokenizer@inproceedings{
arriola2025e2d2,
title={Encoder-Decoder Diffusion Language Models for Efficient Training and Inference},
author={Marianne Arriola and Yair Schiff and Hao Phung and Aaron Gokaslan and Volodymyr Kuleshov},
booktitle={The Thirty-ninth Annual Conference on Neural Information Processing Systems},
year={2025},
url={https://arxiv.org/abs/2510.22852}
}