Skip to main content

A diffusion-based language model implementation

Project description

DiffusionLM: Large Language Models with Diffusion

PyPI version License: MIT

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 diffusionLM

For development installation:

git clone https://github.com/codewithdark-git/PIP-DifffusionLM.git
cd PIP-DifffusionLM
pip install -e .

Quick Start

from diffusionLM.utils import prepare_dataset
from diffusionLM.model import DiffusionConfig, DiffusionLLM
from transformers import AutoTokenizer

# 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 diffusionLM 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 diffusionLM 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 diffusionLM import DiffusionLMError, handle_errors

@handle_errors()
def your_function():
    # Your code here
    pass

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. 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

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

diffusionlm-0.1.6.tar.gz (20.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

diffusionlm-0.1.6-py3-none-any.whl (25.1 kB view details)

Uploaded Python 3

File details

Details for the file diffusionlm-0.1.6.tar.gz.

File metadata

  • Download URL: diffusionlm-0.1.6.tar.gz
  • Upload date:
  • Size: 20.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for diffusionlm-0.1.6.tar.gz
Algorithm Hash digest
SHA256 01f669248ff861d3fe1b421638e82410f228ccc100b82d8414e3d63ba626850d
MD5 cc70dbee649190545e86496fc71b5c7d
BLAKE2b-256 d0d99ae1275626c9daa207d81e2e68ca28d9296c4c1dcd231f64eaefda14cd2a

See more details on using hashes here.

File details

Details for the file diffusionlm-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: diffusionlm-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 25.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for diffusionlm-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 f2162f397e8f3420538b5c3e836a81c332c870d9edb31f11371c751e67d09e5b
MD5 e6b798cd326750a34bf470fecb7b51de
BLAKE2b-256 f0260eb18908bf67ea1d7a275a43f48fccf32b3f33c28b36a32c119e3e7fce70

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page