Skip to content

Commit 4b39c9c

Browse files
committed
Add .gitignore file
1 parent 84d8fae commit 4b39c9c

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Python virtual environments
2+
venv/
3+
env/
4+
.env/
5+
.venv/
6+
ENV/
7+
8+
# PyTorch model files
9+
*.pt
10+
*.pth
11+
*.ckpt
12+
13+
# Python cache
14+
__pycache__/
15+
*.py[cod]
16+
*$py.class
17+
18+
# Distribution / packaging
19+
dist/
20+
build/
21+
*.egg-info/
22+
23+
# IDE settings
24+
.vscode/
25+
.idea/
26+
*.swp
27+
*.swo
28+
29+
# Jupyter Notebook
30+
.ipynb_checkpoints
31+
32+
# Local development settings
33+
.env
34+
.env.local
35+
36+
# Logs
37+
*.log
38+
logs/
39+
40+
# Test coverage
41+
.coverage
42+
htmlcov/
43+
44+
# System files
45+
.DS_Store
46+
Thumbs.db

0 commit comments

Comments
 (0)