ankanghosh commited on
Commit
f0337ae
·
verified ·
1 Parent(s): 135c72c

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +91 -0
.gitignore ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Environment
24
+ .env
25
+ .venv
26
+ env/
27
+ venv/
28
+ ENV/
29
+ env.bak/
30
+ venv.bak/
31
+
32
+ # Logs
33
+ *.log
34
+ logs/
35
+
36
+ # IDE specific files
37
+ .idea/
38
+ .vscode/
39
+ *.swp
40
+ *.swo
41
+
42
+ # OS specific
43
+ .DS_Store
44
+ Thumbs.db
45
+
46
+ # Project specific
47
+ data/*
48
+ !data/.gitkeep
49
+
50
+ # Streamlit secrets
51
+ .streamlit/secrets.toml
52
+
53
+ # Jupyter Notebook
54
+ .ipynb_checkpoints
55
+
56
+ # Large files & models
57
+ *.7z
58
+ *.arrow
59
+ *.bin
60
+ *.bz2
61
+ *.ckpt
62
+ *.ftz
63
+ *.gz
64
+ *.h5
65
+ *.joblib
66
+ *.lfs.*
67
+ *.mlmodel
68
+ *.model
69
+ *.msgpack
70
+ *.npy
71
+ *.npz
72
+ *.onnx
73
+ *.ot
74
+ *.parquet
75
+ *.pb
76
+ *.pickle
77
+ *.pkl
78
+ *.pt
79
+ *.pth
80
+ *.rar
81
+ *.safetensors
82
+ saved_model/**/*
83
+ *.tar.*
84
+ *.tar
85
+ *.tflite
86
+ *.tgz
87
+ *.wasm
88
+ *.xz
89
+ *.zip
90
+ *.zst
91
+ *tfevents*