ahmadsanafarooq commited on
Commit
e943954
·
verified ·
1 Parent(s): e6cdb3e

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +34 -0
.gitignore ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # User data (visible to you but not in git)
2
+ data/
3
+
4
+ # Environment variables
5
+ .env
6
+
7
+ # Python cache
8
+ __pycache__/
9
+ *.pyc
10
+ *.pyo
11
+ *.pyd
12
+ .Python
13
+ env/
14
+ .env
15
+ .venv/
16
+ venv/
17
+ ENV/
18
+
19
+ # Jupyter Notebook
20
+ .ipynb_checkpoints
21
+
22
+ # IDE
23
+ .vscode/
24
+ .idea/
25
+ *.swp
26
+ *.swo
27
+
28
+ # OS
29
+ .DS_Store
30
+ Thumbs.db
31
+
32
+ # Model cache
33
+ .cache/
34
+ models/