Spaces:
Runtime error
Runtime error
chore: add .gitignore and untrack caches/notebooks
Browse files- .gitignore +18 -0
.gitignore
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*.ipynb
|
| 5 |
+
*.log
|
| 6 |
+
*.err
|
| 7 |
+
|
| 8 |
+
# Expériences / données lourdes potentiellement
|
| 9 |
+
*.pt
|
| 10 |
+
*.ckpt
|
| 11 |
+
*.bin
|
| 12 |
+
*.npz
|
| 13 |
+
*.npy
|
| 14 |
+
|
| 15 |
+
# OS/editor
|
| 16 |
+
.DS_Store
|
| 17 |
+
.vscode/
|
| 18 |
+
.idea/
|