Aswini-Kumar commited on
Commit
5e562e2
·
verified ·
1 Parent(s): 62e079d

upload: .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +48 -0
.gitignore ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyo
5
+ *.pyd
6
+ .Python
7
+ *.egg-info/
8
+ dist/
9
+ build/
10
+ .eggs/
11
+
12
+ # Virtualenvs
13
+ .venv/
14
+ venv/
15
+ env/
16
+ .env
17
+
18
+ # Testing
19
+ .pytest_cache/
20
+ .coverage
21
+ htmlcov/
22
+
23
+ # Jupyter
24
+ .ipynb_checkpoints/
25
+
26
+ # Model weights (too large for git)
27
+ *.bin
28
+ *.safetensors
29
+ *.gguf
30
+ *.pt
31
+ *.pth
32
+ *.ckpt
33
+
34
+ # Training artifacts (committed only after training)
35
+ results/
36
+ wandb/
37
+
38
+ # OS
39
+ .DS_Store
40
+ Thumbs.db
41
+
42
+ # IDE
43
+ .vscode/
44
+ .idea/
45
+ *.swp
46
+
47
+ # HF cache
48
+ ~/.cache/huggingface/