# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
*.egg
.eggs/
MANIFEST

# Distribution / packaging
build/
dist/
wheels/
sdist/

# Testing & coverage
.pytest_cache/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
coverage.xml
.hypothesis/

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

# Type checkers & linters
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.ruff_cache

# Jupyter
.ipynb_checkpoints

# Benchmarking
**/lightning_logs
experiments/benchmarking/logs

# Data directories (not source code)
/**data*/
*test*.*
!tests/
!tests/*/
!tests/**
**/__pycache__/

# agml/_internal: only specific files are tracked
agml/_internal/*
!agml/_internal/preprocess*.py
!agml/_internal/s3internal.py
!agml/_internal/__init__.py
!agml/_internal/utils.py

# Training outputs
agml/models/training/*.log
agml/models/training/*.err
agml/models/training/*.out
agml/models/training/*.csv

# Project-specific
agml/_helios
agml/helios_config.sh
agml/train
*.pptx
image*.png
.challenges
.paper

# Under development
agml/data/augmentations/
agml/data/exporters/pascal_voc.py

# IDEs & editors
.DS_Store
__MACOSX
.idea/
.vscode/