Raiff1982 commited on
Commit
5513211
·
verified ·
1 Parent(s): 3ae73a2

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +44 -0
.gitignore ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyo
5
+ *.pyd
6
+ *.so
7
+
8
+ # Virtualenv
9
+ .venv/
10
+ env/
11
+ venv/
12
+ pip-wheel-metadata/
13
+
14
+ # Hugging Face tokens / secrets
15
+ *.env
16
+ *.secret
17
+ .token*
18
+
19
+ # Model artifacts
20
+ *.pt
21
+ *.bin
22
+ *.ckpt
23
+ *.onnx
24
+ *.safetensors
25
+
26
+ # Logs & outputs
27
+ *.log
28
+ *.tmp
29
+ *.bak
30
+ .DS_Store
31
+ *.png
32
+
33
+ # Jupyter/colab
34
+ .ipynb_checkpoints
35
+
36
+ # Build
37
+ build/
38
+ dist/
39
+ *.egg-info
40
+
41
+ # VS Code / IDE
42
+ .vscode/
43
+ .idea/
44
+ *.swp