mehdi999 commited on
Commit
ef11c21
·
1 Parent(s): 56cfa73

chore: add .gitignore and untrack caches/notebooks

Browse files
Files changed (1) hide show
  1. .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/