refiners/.gitignore
2024-04-03 16:45:00 +02:00

42 lines
442 B
Plaintext

# compilation and distribution
__pycache__/
*.py[cod]
dist/
# virtual environments
venv/
# unit tests
.pytest_cache/
# tests' model weights
tests/weights/
tests/repos/
tests/datasets/
# ruff
.ruff_cache
# vscode
.vscode
# Weights & Biases (offline trainings)
wandb/
# macos
.DS_Store
# model weights
*.safetensors
# env variable definitions file
.env
# lock files
requirements-dev.lock
# coverage.py
htmlcov/
.coverage
.coverage.*