canspace / .gitignore
Pujan Neupane
Project : pushing all the files to hugging face
e9f0d54
raw
history blame contribute delete
608 Bytes
# ---- Python Environment ----
venv/
.venv/
env/
ENV/
*.pyc
*.pyo
*.pyd
__pycache__/
**/__pycache__/
# ---- VS Code / IDEs ----
.vscode/
.idea/
*.swp
# ---- Jupyter / IPython ----
.ipynb_checkpoints/
*.ipynb
# ---- Model & Data Artifacts ----
*.pt
*.h5
*.ckpt
*.onnx
*.joblib
*.pkl
# ---- Hugging Face Cache ----
~/.cache/huggingface/
huggingface_cache/
# ---- Logs and Dumps ----
*.log
*.out
*.err
# ---- Build Artifacts ----
build/
dist/
*.egg-info/
# ---- System Files ----
.DS_Store
Thumbs.db
# ---- Environment Configs ----
.env
.env.*
# ---- Node Projects (if applicable) ----
node_modules/