Snaseem2026 commited on
Commit
403d57b
·
verified ·
1 Parent(s): c1ed876

Upload .gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .gitignore +68 -0
.gitignore ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ env/
8
+ venv/
9
+ ENV/
10
+ build/
11
+ develop-eggs/
12
+ dist/
13
+ downloads/
14
+ eggs/
15
+ .eggs/
16
+ lib/
17
+ lib64/
18
+ parts/
19
+ sdist/
20
+ var/
21
+ wheels/
22
+ *.egg-info/
23
+ .installed.cfg
24
+ *.egg
25
+
26
+ # Virtual environments
27
+ venv/
28
+ ENV/
29
+ env/
30
+
31
+ # PyCharm
32
+ .idea/
33
+
34
+ # VS Code
35
+ .vscode/
36
+
37
+ # Jupyter Notebook
38
+ .ipynb_checkpoints
39
+
40
+ # Model files and results
41
+ results/
42
+ models/
43
+ checkpoints/
44
+ *.pt
45
+ *.pth
46
+ *.bin
47
+ *.onnx
48
+
49
+ # Data files (keep structure, ignore content)
50
+ data/*.csv
51
+ data/*.json
52
+ data/*.txt
53
+ !data/.gitkeep
54
+
55
+ # Logs
56
+ *.log
57
+ logs/
58
+
59
+ # OS
60
+ .DS_Store
61
+ Thumbs.db
62
+
63
+ # Hugging Face
64
+ wandb/
65
+ .huggingface/
66
+
67
+ # Documentation - exclude from Hub upload
68
+ QUICKSTART.md