🤗 Hugging Face 来源feature-extractionapache-2.01.4 GBother✓ 1 个校验和今天更新
一条命令提交

在你的模型文件夹旁边运行它。它会制作种子、将文件与 Hugging Face 比对,然后提交。你只需开始做种,并粘贴你账户中的密钥。它只读取你的文件,绝不修改。如果愿意,可以先阅读脚本。

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo kuleshov-group/e2d2-owt ./model-folder
需要做种者 →

Quick start guide

To use this models, follow the snippet below:

from transformers import AutoModelForMaskedLM

# model_config_overrides = {}  # Use this to optionally override config parameters
model = AutoModelForMaskedLM.from_pretrained(
    "kuleshov-group/e2d2-owt",
    trust_remote_code=True,
    # **model_config_overrides,
)

Model details

  • Trained from scratch on Skylion007/openwebtext
  • gpt2 tokenizer
  • Block diffusion parameterization, with block size 4

See the project site for more details and link to the paper and code: https://m-arriola.com/e2d2/

Citation

@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}
}