ai-mitra commited on
Commit
7272ba4
·
verified ·
1 Parent(s): 09a0b02

Upload .gitignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .gitignore +36 -0
.gitignore ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ env/
8
+ .venv/
9
+ venv/
10
+ ENV/
11
+
12
+ # IDE
13
+ .vscode/
14
+ .idea/
15
+ *.swp
16
+ *.swo
17
+ *~
18
+
19
+ # OS
20
+ .DS_Store
21
+ Thumbs.db
22
+
23
+ # Output files
24
+ output/
25
+ *.png
26
+ *.jpg
27
+ *.jpeg
28
+
29
+ # Temporary files
30
+ tmpclaude-*
31
+ *.log
32
+ *.tmp
33
+
34
+ # Model checkpoints (keep only the main model)
35
+ checkpoint_*.pt
36
+ best_model_*.pt