Prithvik-1 commited on
Commit
0c6601a
·
verified ·
1 Parent(s): 12d9ada

Upload .gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .gitignore +40 -0
.gitignore ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Models (not pushed to HF)
2
+ base_models/
3
+ mistral-finetuned-*/
4
+ *.safetensors
5
+ *.bin
6
+ *.pth
7
+
8
+ # Virtual environments
9
+ .venv/
10
+ venv/
11
+ env/
12
+
13
+ # Python
14
+ __pycache__/
15
+ *.py[cod]
16
+ *$py.class
17
+ *.so
18
+ .Python
19
+
20
+ # Dataset uploads
21
+ uploads/
22
+
23
+ # Logs
24
+ *.log
25
+ logs/
26
+
27
+ # OS
28
+ .DS_Store
29
+ Thumbs.db
30
+
31
+ # IDE
32
+ .vscode/
33
+ .idea/
34
+ *.swp
35
+ *.swo
36
+
37
+ # Large files
38
+ *.tar.gz
39
+ *.zip
40
+ *.rar