Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 04542c7

Browse files
Create .gitignore
1 parent 6411b2b commit 04542c7

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

.gitignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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 environments
24+
.env
25+
.venv
26+
env/
27+
venv/
28+
ENV/
29+
env.bak/
30+
venv.bak/
31+
32+
# ML experiment artifacts
33+
mlruns/
34+
wandb/
35+
outputs/
36+
checkpoints/
37+
*.pt
38+
*.pth
39+
*.ckpt
40+
*.safetensors
41+
*.bin
42+
*.gguf
43+
44+
# Data
45+
data/raw/
46+
data/processed/
47+
*.csv
48+
*.parquet
49+
*.jsonl
50+
!examples/**/*.jsonl
51+
52+
# Jupyter
53+
.ipynb_checkpoints
54+
*.ipynb
55+
56+
# IDE
57+
.idea/
58+
.vscode/
59+
*.swp
60+
*.swo
61+
.DS_Store
62+
63+
# Secrets
64+
.env.local
65+
.env.*.local
66+
secrets.yaml
67+
secrets.json
68+
*.pem
69+
*.key
70+
71+
# Logs
72+
logs/
73+
*.log
74+
npm-debug.log*
75+
76+
# Node
77+
node_modules/
78+
package-lock.json
79+
80+
# Docker
81+
.docker/
82+
83+
# OS
84+
Thumbs.db

0 commit comments

Comments
 (0)