devkunalnaik commited on
Commit
77fcc49
·
1 Parent(s): acb9f1e

Add .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +42 -0
.gitignore ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Models (large binary files — download at runtime)
2
+ models/*.onnx
3
+ models/*.pth
4
+ models/*.pt
5
+ models/*.bin
6
+
7
+ # Python
8
+ __pycache__/
9
+ *.pyc
10
+ *.pyo
11
+ *.pyd
12
+ .Python
13
+ *.egg-info/
14
+ dist/
15
+ build/
16
+ .eggs/
17
+
18
+ # Virtual environments
19
+ venv/
20
+ .venv/
21
+ env/
22
+ .env
23
+
24
+ # Secrets / environment variables
25
+ .env
26
+ .env.*
27
+ *.key
28
+
29
+ # Temp / output files
30
+ *.tmp
31
+ output/
32
+ temp/
33
+ tmp/
34
+
35
+ # OS
36
+ .DS_Store
37
+ Thumbs.db
38
+
39
+ # IDE
40
+ .vscode/settings.json
41
+ .idea/
42
+ *.swp