Spaces:
Paused
Paused
| # Python artifacts | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| */.ipynb_checkpoints/* | |
| # Environment | |
| .env | |
| !.env.example # Giữ template — không chứa secrets | |
| .venv | |
| env/ | |
| venv/ | |
| ENV/ | |
| conda_env/ | |
| medical_vqa.pth # Python path file tạo bởi setup.sh | |
| # Project Specific - Data (Large files) | |
| data/images/ | |
| data/*.zip | |
| data/*.json | |
| !data/meddict.json # Giữ lại từ điển y khoa nếu nó nhẹ | |
| # Model Checkpoints | |
| checkpoints/ | |
| *.pt | |
| *.pth | |
| *.bin | |
| *.safetensors | |
| # Logs & Results | |
| logs/ | |
| !logs.zip | |
| *.log | |
| results/charts/ # PNG charts lớn — tái tạo bằng compare_models.py | |
| # WandB local cache | |
| wandb/ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Temporary scratch files | |
| scratch/ | |