manuelvaraletai commited on
Commit
fd40868
·
verified ·
1 Parent(s): 07d57d5

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +57 -0
.gitignore CHANGED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===== .gitignore =====
2
+ # Python
3
+ __pycache__/
4
+ *.py[cod]
5
+ *$py.class
6
+ *.so
7
+ .Python
8
+ build/
9
+ develop-eggs/
10
+ dist/
11
+ downloads/
12
+ eggs/
13
+ .eggs/
14
+ lib/
15
+ lib64/
16
+ parts/
17
+ sdist/
18
+ var/
19
+ wheels/
20
+ *.egg-info/
21
+ .installed.cfg
22
+ *.egg
23
+
24
+ # Virtual environments
25
+ venv/
26
+ env/
27
+ ENV/
28
+
29
+ # IDE
30
+ .vscode/
31
+ .idea/
32
+ *.swp
33
+ *.swo
34
+
35
+ # OS
36
+ .DS_Store
37
+ Thumbs.db
38
+
39
+ # Videos grandes (usar Git LFS)
40
+ *.mp4
41
+ *.avi
42
+ *.mov
43
+ !examples/sample_*.mp4
44
+
45
+ # Modelos grandes
46
+ *.pth
47
+ *.bin
48
+ *.onnx
49
+
50
+ # Logs
51
+ *.log
52
+ logs/
53
+
54
+ # Temporal
55
+ temp/
56
+ tmp/
57
+ *.tmp