KeithXD commited on
Commit
fe2e74b
·
verified ·
1 Parent(s): 13ed4d6

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +82 -0
.gitignore ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environment
2
+ .env
3
+ .env.local
4
+ .env.*.local
5
+ *.key
6
+
7
+ # Secrets
8
+ secrets/
9
+ hf_token.txt
10
+ tokens/
11
+
12
+ # Python
13
+ __pycache__/
14
+ *.py[cod]
15
+ *$py.class
16
+ *.so
17
+ .Python
18
+ env/
19
+ venv/
20
+ ENV/
21
+ build/
22
+ develop-eggs/
23
+ dist/
24
+ downloads/
25
+ eggs/
26
+ .eggs/
27
+ lib/
28
+ lib64/
29
+ parts/
30
+ sdist/
31
+ var/
32
+ wheels/
33
+ *.egg-info/
34
+ .installed.cfg
35
+ *.egg
36
+
37
+ # IDE
38
+ .vscode/
39
+ .vscode-server/
40
+ .idea/
41
+ *.swp
42
+ *.swo
43
+ *~
44
+ .DS_Store
45
+ Thumbs.db
46
+
47
+ # Testing
48
+ .pytest_cache/
49
+ .coverage
50
+ htmlcov/
51
+
52
+ # Jupyter Notebook
53
+ .ipynb_checkpoints
54
+ *.ipynb
55
+
56
+ # Model files (large files)
57
+ *.onnx
58
+ *.pt
59
+ *.pth
60
+ *.bin
61
+ models/
62
+ checkpoints/
63
+
64
+ # Logs
65
+ *.log
66
+ logs/
67
+ *.tmp
68
+
69
+ # Package artifacts
70
+ dist/
71
+ build/
72
+
73
+ # Hugging Face cache
74
+ .cache/
75
+
76
+ # Jupyter
77
+ .ipynb_checkpoints/
78
+ *.ipynb
79
+
80
+ # Node (if used)
81
+ node_modules/
82
+ package-lock.json