axyut commited on
Commit ·
3fb7f45
1
Parent(s): 37bf27b
add huggingface gitignore
Browse files- .gitignore +66 -1
.gitignore
CHANGED
|
@@ -23,4 +23,69 @@ go.work.sum
|
|
| 23 |
|
| 24 |
# env file
|
| 25 |
.env
|
| 26 |
-
tmp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
# env file
|
| 25 |
.env
|
| 26 |
+
tmp/
|
| 27 |
+
|
| 28 |
+
# FROM HUGGINGFACE
|
| 29 |
+
# ---- Python Environment ----
|
| 30 |
+
venv/
|
| 31 |
+
.venv/
|
| 32 |
+
env/
|
| 33 |
+
ENV/
|
| 34 |
+
*.pyc
|
| 35 |
+
*.pyo
|
| 36 |
+
*.pyd
|
| 37 |
+
__pycache__/
|
| 38 |
+
**/__pycache__/
|
| 39 |
+
|
| 40 |
+
# ---- VS Code / IDEs ----
|
| 41 |
+
.vscode/
|
| 42 |
+
.idea/
|
| 43 |
+
*.swp
|
| 44 |
+
|
| 45 |
+
# ---- Jupyter / IPython ----
|
| 46 |
+
.ipynb_checkpoints/
|
| 47 |
+
*.ipynb
|
| 48 |
+
|
| 49 |
+
# ---- Model & Data Artifacts ----
|
| 50 |
+
*.pth
|
| 51 |
+
*.pt
|
| 52 |
+
*.h5
|
| 53 |
+
*.ckpt
|
| 54 |
+
*.onnx
|
| 55 |
+
*.joblib
|
| 56 |
+
*.pkl
|
| 57 |
+
|
| 58 |
+
# ---- Hugging Face Cache ----
|
| 59 |
+
~/.cache/huggingface/
|
| 60 |
+
huggingface_cache/
|
| 61 |
+
|
| 62 |
+
# ---- Logs and Dumps ----
|
| 63 |
+
*.log
|
| 64 |
+
*.out
|
| 65 |
+
*.err
|
| 66 |
+
|
| 67 |
+
# ---- Build Artifacts ----
|
| 68 |
+
build/
|
| 69 |
+
dist/
|
| 70 |
+
*.egg-info/
|
| 71 |
+
|
| 72 |
+
# ---- System Files ----
|
| 73 |
+
.DS_Store
|
| 74 |
+
Thumbs.db
|
| 75 |
+
|
| 76 |
+
# ---- Environment Configs ----
|
| 77 |
+
.env
|
| 78 |
+
.env.*
|
| 79 |
+
|
| 80 |
+
# ---- Project-specific ----
|
| 81 |
+
Ai-Text-Detector/
|
| 82 |
+
HuggingFace/model/
|
| 83 |
+
|
| 84 |
+
# ---- Node Projects (if applicable) ----
|
| 85 |
+
node_modules/
|
| 86 |
+
model/
|
| 87 |
+
models/.gitattributes #<-- This line can stay if you only want to ignore that file, not the whole folder
|
| 88 |
+
|
| 89 |
+
todo.md
|
| 90 |
+
np_text_model
|
| 91 |
+
IMG_models
|