Spaces:
Runtime error
Runtime error
| # Python | |
| __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 | |
| # Virtual Environment | |
| venv/ | |
| env/ | |
| ENV/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Model artifacts (large files - exclude from deployment) | |
| *.safetensors | |
| *.bin | |
| *.pth | |
| *.h5 | |
| *.pb | |
| *.onnx | |
| *.tflite | |
| # Trained models (exclude for deployment) | |
| vietnamese_sentiment_finetuned/ | |
| model/ | |
| models/ | |
| checkpoints/ | |
| *.ckpt | |
| # Generated visualizations (exclude for deployment) | |
| *.png | |
| *.jpg | |
| *.jpeg | |
| *.svg | |
| training_history.png | |
| confusion_matrix.png | |
| # PDF files (exclude all except paper.tex) | |
| !pdf/paper.tex | |
| # LaTeX compilation artifacts (exclude all but .tex) | |
| *.aux | |
| *.fdb_latexmk | |
| *.fls | |
| *.log | |
| *.out | |
| *.synctex.gz | |
| pdf/*.aux | |
| pdf/*.fdb_latexmk | |
| pdf/*.fls | |
| pdf/*.log | |
| pdf/*.out | |
| pdf/*.synctex.gz | |
| pdf/*.pdf | |
| # Logs and temporary files | |
| *.log | |
| *.tmp | |
| *.temp | |
| *.out | |
| # Cache directories | |
| .cache/ | |
| .pytest_cache/ | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| .ipynb_checkpoints/ | |
| # Gradio cache | |
| gradio_cached_examples/ | |
| *.gradio/ | |
| # Hugging Face cache | |
| ~/.cache/huggingface/ | |
| *.cache | |
| # Dataset files (exclude for deployment) | |
| *.csv | |
| *.json | |
| *.tsv | |
| *.txt | |
| data/ | |
| datasets/ | |
| # Virtual environments and build files | |
| venv/ | |
| env/ | |
| ENV/ | |
| build/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| *.so | |
| .Python | |
| # Development and configuration files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| .DS_Store | |
| Thumbs.db | |
| # Claude and development tools | |
| .claude/ | |
| .serena/ | |
| *.session | |
| # Documentation (exclude for deployment, keep source) | |
| docs/ | |
| doc/ | |
| *.md | |
| !README.md | |
| !HUGGINGFACE_DEPLOYMENT.md | |
| !DEPLOYMENT.md | |
| !FINE_TUNING_STATUS.md | |
| # Node modules and web dependencies (if any) | |
| node_modules/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* |