A diffusion-based language model implementation
Project description
DiffusionLM: Large Language Models with Diffusion
DiffusionLM is a novel approach to language modeling that combines transformer architectures with diffusion processes for high-quality text generation. This package provides a flexible and efficient implementation of diffusion-based language models.
Features
-
Advanced Architecture
- Transformer-based backbone with diffusion capabilities
- Configurable model sizes (small, medium, large)
- Time step conditioning
- Attention mechanisms optimized for text
-
Multiple Generation Strategies
- Auto-regressive generation
- Parallel generation
- Confidence-based masking
- Semi-autoregressive generation
- Top-p (nucleus) sampling
- Beam search
-
Training Features
- Distributed training support
- Mixed precision training
- Gradient checkpointing
- Early stopping
- Model checkpointing
- Learning rate scheduling
-
Utilities
- Real-time token generation streaming
- Model saving and loading
- HuggingFace Hub integration
- Comprehensive logging
- Error handling
Installation
pip install diffusion-llm
For development installation:
git clone https://github.com/codewithdark-git/PIP-DifffusionLM.git
cd PIP-DifffusionLM
pip install -e .
Quick Start
from diffusion_llm.utils import prepare_dataset
from transformers import AutoTokenizer
from diffusion_llm.model import DiffusionConfig, DiffusionLLM
# Load tokenizer and prepare dataset
tokenizer = AutoTokenizer.from_pretrained("gpt2")
train_dataset, val_dataset, _ = prepare_dataset(
dataset_name="wikitext/wikitext-103-v1",
tokenizer_name="gpt2"
)
# Initialize model
config = DiffusionConfig(
vocab_size=len(tokenizer),
max_position_embeddings=256,
num_timesteps=50,
pad_token_id=tokenizer.pad_token_id,
mask_token_id=tokenizer.mask_token_id,
# **config_kwargs
)
model = DiffusionLLM(config)
Training
Basic Training
from diffusion_llm import trainer
train_model = trainer(
model=model,
train_dataset=train_dataset,
val_dataset=val_dataset,
batch_size=batch_size,
num_epochs=num_epochs,
learning_rate=learning_rate,
num_timesteps=num_timesteps,
save_path=save_dir,
device=device,
)
Model Registry
from diffusion_llm import registerANDpush
registerANDpush(
model=trained_model,
tokenizer=tokenizer,
model_type="diffusionLM",
repo_id="your-username/model-name"
)
Error Handling
The package includes comprehensive error handling:
from diffusion_llm import DiffusionLMError, handle_errors
@handle_errors()
def your_function():
# Your code here
pass
Contributing
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Requirements
- Python ≥ 3.8
- PyTorch ≥ 1.9.0
- Transformers ≥ 4.21.0
- For full requirements, see
requirements.txt
License
This project is licensed under the MIT License - see the LICENSE file for details.
Citation
@article{diffusionllm2025,
title={DiffusionLM: Large Language Models with Diffusion},
author={Dark Coder},
journal={GitHub Repository},
year={2025},
publisher={GitHub},
url={https://github.com/codewithdark-git/PIP-DifffusionLM}
}
Contact
- GitHub: @codewithdark-git
- Email: codewithdark90@gmail.com
PIP-DifffusionLM
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file diffusionlm-0.1.4.tar.gz.
File metadata
- Download URL: diffusionlm-0.1.4.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e42b47728c5cc8bffb4d28bdce7e3ac266043b888da7bb673c8cf6ee539d70a5
|
|
| MD5 |
1440f05bfffedf9f7bf6dc8ab8a3b5af
|
|
| BLAKE2b-256 |
58147002d02df5d869c4660c6262a05e29dd6000753a6dc15f6c2f50cc67cc48
|
File details
Details for the file diffusionlm-0.1.4-py3-none-any.whl.
File metadata
- Download URL: diffusionlm-0.1.4-py3-none-any.whl
- Upload date:
- Size: 22.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b635acf3a0bfa1657915c7d23505871da9372bbede6030f708243d24393db039
|
|
| MD5 |
8cf7faf8ca732d4d61fb9911b6132912
|
|
| BLAKE2b-256 |
c489503ef510d09033acbeb67d2b9ae14479ef51c192ed1ed4dcc562ba1a4e98
|