yiqichen01 commited on
Commit
3a88b69
·
verified ·
1 Parent(s): 15d5a3d

Add .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +47 -0
.gitignore ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ *.egg-info/
7
+ dist/
8
+ build/
9
+ *.egg
10
+
11
+ # Virtual environments
12
+ .venv/
13
+ venv/
14
+ env/
15
+
16
+ # IDE
17
+ .idea/
18
+ .vscode/
19
+ *.swp
20
+ *.swo
21
+
22
+ # OS
23
+ .DS_Store
24
+ Thumbs.db
25
+
26
+ # Model checkpoints (do not commit large model files)
27
+ *.safetensors
28
+ *.bin
29
+ *.pt
30
+ *.pth
31
+ *.ckpt
32
+
33
+ # Training outputs
34
+ output/
35
+ saves/
36
+
37
+ # Generated by the multi-node launch scripts
38
+ env.txt
39
+ hostfile
40
+ pssh.hosts
41
+
42
+ # Logs
43
+ *.log
44
+ logs/
45
+
46
+ # Cache
47
+ .cache/