JingShiang Yang commited on
Commit
38540ce
·
1 Parent(s): 2e11ff8

Add .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +48 -0
.gitignore ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ venv/
8
+ env/
9
+ ENV/
10
+ *.egg-info/
11
+ dist/
12
+ build/
13
+
14
+ # Testing outputs
15
+ output_mask.png
16
+ result.json
17
+ request_payload.json
18
+ mask.b64
19
+ mask.png
20
+ test_input.png
21
+ test_output_*.png
22
+
23
+ # Test images (add specific test images here)
24
+ test.jpg
25
+ test.png
26
+
27
+ # macOS
28
+ .DS_Store
29
+ .AppleDouble
30
+ .LSOverride
31
+
32
+ # IDE
33
+ .vscode/
34
+ .idea/
35
+ *.swp
36
+ *.swo
37
+ *~
38
+
39
+ # Jupyter
40
+ .ipynb_checkpoints/
41
+ *.ipynb
42
+
43
+ # Logs
44
+ *.log
45
+
46
+ # Temporary files
47
+ *.tmp
48
+ *.bak