Wisdom Chen commited on
Commit
08cf9b5
·
unverified ·
1 Parent(s): 295b937

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +18 -6
.gitignore CHANGED
@@ -21,10 +21,8 @@ wheels/
21
  *.egg
22
 
23
  # Virtual Environment
24
- .env
25
- .venv
26
- env/
27
  venv/
 
28
  ENV/
29
 
30
  # IDE
@@ -33,9 +31,23 @@ ENV/
33
  *.swp
34
  *.swo
35
 
36
- # Streamlit
37
- .streamlit/
38
 
39
- # System
 
 
 
40
  .DS_Store
41
  Thumbs.db
 
 
 
 
 
 
 
 
 
 
 
 
21
  *.egg
22
 
23
  # Virtual Environment
 
 
 
24
  venv/
25
+ env/
26
  ENV/
27
 
28
  # IDE
 
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