Wisdom Chen commited on
Commit
0e2bfd8
·
unverified ·
1 Parent(s): 4f3be3c

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +12 -42
.gitignore CHANGED
@@ -1,55 +1,25 @@
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
- # Virtual Environment
24
- venv/
 
25
  env/
 
26
  ENV/
27
 
28
- # IDE
29
- .idea/
30
- .vscode/
31
- *.swp
32
- *.swo
33
-
34
- # Environment variables
35
- .env
36
-
37
- # Logs
38
- *.log
39
 
40
- # Local development
41
  .DS_Store
42
  Thumbs.db
43
 
44
- # Model checkpoints and data
45
- *.pth
46
- *.pt
47
- *.bin
48
- *.h5
49
- *.pkl
50
- *.model
51
 
52
- # Jupyter Notebook
53
- .ipynb_checkpoints
54
- .streamlit/secrets.toml
55
- .streamlit/secrets.toml
 
1
  # Python
2
  __pycache__/
3
  *.py[cod]
 
4
  *.so
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
+ # Environments
7
+ .env
8
+ .venv
9
  env/
10
+ venv/
11
  ENV/
12
 
13
+ # Streamlit
14
+ .streamlit/
 
 
 
 
 
 
 
 
 
15
 
16
+ # OS files
17
  .DS_Store
18
  Thumbs.db
19
 
20
+ # IDE files
21
+ .vscode/
22
+ .idea/
 
 
 
 
23
 
24
+ # Logs
25
+ *.log