.pyc
__pycache__/
# Ignore virtual environment directories
venv/
env/
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Ignore data files
data/
# Ignore logs
logs/
# Ignore model checkpoints
checkpoints/
# Ignore configuration files
config.yaml
# Ignore sensitive information
secrets.yaml
# Ignore IDE specific files
.vscode/
.idea/
# Ignore test outputs
test_outputs/
,pytest_cache/
# Ignore coverage reports
htmlcov/
.coverage
.coverage.*
.mypy_cache/

# Ignore Python build artifacts
dist/
build/
*.egg-info/
.eggs/
*.whl
*.tar.gz

# Ignore hatch specific
.hatch/