139 lines
1.5 KiB
Text
139 lines
1.5 KiB
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Environment variables and secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
service-account.json
|
|
|
|
# Project specific - Debug outputs
|
|
debug_*/
|
|
crops_debug/
|
|
debug_improved/
|
|
debug_splitting/
|
|
debug_canny_params.py
|
|
test_crops/
|
|
panel_test_crops/
|
|
improved_crops/
|
|
|
|
# Project specific - Results and reports
|
|
results/
|
|
reports/
|
|
tuning_results_*.json
|
|
|
|
# Project specific - Test outputs
|
|
test_splits/
|
|
test_layouts/
|
|
|
|
# Project specific - Temporary files
|
|
temp_*/
|
|
unused-layouts/
|
|
|
|
# Project specific - Data files
|
|
layouts/
|
|
layouts.zip
|
|
layouts_and_masters.zip
|
|
master_images/
|
|
|
|
# Project specific - Cache
|
|
embeddings_cache/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# pipenv
|
|
Pipfile.lock
|
|
|
|
# PEP 582
|
|
__pypackages__/
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# SageMath
|
|
*.sage.py
|
|
|
|
# Environments
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Pyre
|
|
.pyre/
|
|
|
|
# pytest
|
|
.pytest_cache/
|
|
.tox/
|
|
|
|
# Coverage
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
Thumbs.db:encryptable
|
|
ehthumbs.db
|
|
ehthumbs_vista.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# Linux
|
|
*~
|
|
.directory
|
|
.Trash-*
|