refiners/.gitignore

42 lines
442 B
Plaintext
Raw Permalink Normal View History

2023-08-04 13:28:41 +00:00
# compilation and distribution
__pycache__/
*.py[cod]
dist/
# virtual environments
venv/
# unit tests
.pytest_cache/
# tests' model weights
tests/weights/
tests/repos/
2024-04-03 09:54:39 +00:00
tests/datasets/
2023-08-04 13:28:41 +00:00
# ruff
.ruff_cache
# vscode
.vscode
# Weights & Biases (offline trainings)
wandb/
# macos
.DS_Store
# model weights
*.safetensors
2023-08-24 13:34:45 +00:00
# env variable definitions file
.env
# lock files
requirements-dev.lock
2024-01-27 18:32:40 +00:00
# coverage.py
htmlcov/
.coverage
.coverage.*