mirror of
https://github.com/rushil-thareja/dp-fusion-lib.git
synced 2026-04-24 12:06:23 +02:00
- Token-level differential privacy for LLMs - Integration with Document Privacy API - Comprehensive test suite and documentation - Examples and Jupyter notebook included
82 lines
700 B
Text
82 lines
700 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
.venv/
|
|
env/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
|
|
# Documentation
|
|
site/
|
|
docs/_build/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.bak
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
*.ipynb_checkpoints
|
|
|
|
# Project specific
|
|
*.log
|
|
models/
|
|
*.pkl
|
|
*.pt
|
|
*.pth
|
|
*.bin
|
|
*.safetensors
|
|
*.ckpt
|
|
|
|
# Environment files (may contain secrets)
|
|
.env
|
|
.env.local
|
|
*.env
|
|
|
|
# Cache
|
|
.cache/
|
|
|
|
# Build artifacts
|
|
*.whl
|
|
MANIFEST
|