# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pycharm
.idea/
*.iml

# vscode
.vscode/

# PEP 582; used by poetry and pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyderworkspace

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# ===================================================================
# AI/ML Specific Files
# ===================================================================
# Model files
*.pkl
*.joblib
*.h5
*.hdf5
*.pth
*.pt
*.onnx
*.pb
*.tflite

# Data files (add specific patterns as needed)
*.csv
*.json
*.parquet
*.feather
*.xlsx
*.xls

# MLflow
mlruns/
mlartifacts/

# Weights & Biases
wandb/

# TensorBoard logs
logs/
tensorboard_logs/

# Datasets
data/
datasets/
raw_data/
processed_data/

# Jupyter Notebook outputs
*.ipynb_checkpoints/

# Model artifacts and experiments
models/
experiments/
checkpoints/

# Vector stores and embeddings
*.faiss
*.index
embeddings/

# ===================================================================
# Project Specific Files
# ===================================================================
# Poetry lock file (optional - uncomment if you want to ignore it)
# poetry.lock

# Docker volumes and data
docker_data/
volumes/

# Temporary files
*.tmp
*.temp
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# IDE and editor files
*.sublime-project
*.sublime-workspace
.vscode/
.idea/

# Backup files
*.bak
*.backup
*.old

# Security and configuration files
.env.local
.env.production
.env.staging
secrets/
keys/

# ===================================================================
# Large Files and Build Artifacts
# ===================================================================
# WAR files
*.war
*.war.original

# JAR files
*.jar

# Large media files
*.mp4
*.avi
*.mov
*.mkv
*.wmv
*.flv
*.webm
*.zip
*.tar.gz
*.rar
*.7z

# Large log files
logs/
*.log

# Build artifacts and compiled files
target/
build/
dist/
*.class
*.o
*.so
*.dll
*.exe

# Database files
*.db
*.sqlite
*.sqlite3

# Large data files
*.csv
*.json
*.xml
*.dat
*.bin

# Node modules and package files
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Java build artifacts
*.class
*.jar
*.war
target/
build/

# Python cache and compiled files
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so

# Virtual environments
venv/
env/
.venv/
.env/

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
Thumbs.db

# Docker specific large files
docker_data/
volumes/
uploads/ 