Spaces:
Sleeping
Sleeping
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| *.egg | |
| # Virtual environments | |
| venv/ | |
| .venv/ | |
| env/ | |
| ENV/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # Data | |
| data/raw/ | |
| data/processed/ | |
| data/cache/ | |
| *.csv | |
| *.txt | |
| !requirements*.txt | |
| # Models | |
| checkpoints/*.pt | |
| # !checkpoints/best.pt | |
| *.pth | |
| *.ckpt | |
| !artifacts/*.json | |
| !artifacts/hf_tokenizer/*.json | |
| # Logs | |
| logs/ | |
| *.log | |
| runs/ | |
| mlruns/ | |
| outputs/ | |
| !outputs/evaluation_report.json | |
| # Outputs | |
| results/ | |
| # Jupyter | |
| .ipynb_checkpoints/ | |
| *.ipynb | |
| # Docs/Paper | |
| docs/paper.* | |
| docs/paper_old.* | |
| docs/research_paper.* | |
| # OS - Windows specific | |
| .DS_Store | |
| Thumbs.db | |
| desktop.ini | |
| $RECYCLE.BIN/ | |
| # Windows thumbnail cache | |
| ehthumbs.db | |
| ehthumbs_vista.db | |
| # Config overrides | |
| configs/local/*.png | |
| *.pt | |
| # Environment variables | |
| .env | |
| .env.* | |
| # Backup/private files | |
| mlruns.db | |
| kaggle.json |