kines9661 commited on
Commit
b780873
·
verified ·
1 Parent(s): fb2640b

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +62 -0
.gitignore ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual Environment
24
+ venv/
25
+ ENV/
26
+ env/
27
+ .venv
28
+
29
+ # IDE
30
+ .vscode/
31
+ .idea/
32
+ *.swp
33
+ *.swo
34
+ *~
35
+
36
+ # 模型文件
37
+ models/
38
+ *.safetensors
39
+ *.bin
40
+ *.ckpt
41
+ *.pth
42
+ *.pt
43
+
44
+ # Hugging Face 緩存
45
+ .cache/
46
+ huggingface/
47
+
48
+ # 日誌
49
+ *.log
50
+
51
+ # 環境變量
52
+ .env
53
+ .env.local
54
+
55
+ # 系統文件
56
+ .DS_Store
57
+ Thumbs.db
58
+
59
+ # 數據庫
60
+ *.db
61
+ *.sqlite
62
+ *.json