Skip to content

Commit b4e1441

Browse files
authored
Create .gitignore
1 parent a538b37 commit b4e1441

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Model weights — never commit these to GitHub (too large, private)
2+
models/
3+
*.h5
4+
*.keras
5+
*.pb
6+
7+
# Dataset — download separately via Kaggle
8+
data/
9+
10+
# Python
11+
__pycache__/
12+
*.py[cod]
13+
*.pyo
14+
.Python
15+
*.egg-info/
16+
dist/
17+
build/
18+
.eggs/
19+
20+
# Virtual environments
21+
venv/
22+
.venv/
23+
env/
24+
25+
# Jupyter
26+
.ipynb_checkpoints/
27+
*.ipynb_checkpoints
28+
29+
# Logs
30+
logs/
31+
*.log
32+
33+
# OS
34+
.DS_Store
35+
Thumbs.db
36+
37+
# IDE
38+
.vscode/
39+
.idea/
40+
*.swp
41+
42+
# Temp files
43+
/tmp/

0 commit comments

Comments
 (0)