Arnel Gwen Nuqui commited on
Commit
8f39262
·
1 Parent(s): 803db15

Remove model folder before push (using external Hugging Face model storage)

Browse files
Files changed (1) hide show
  1. .gitignore +19 -5
.gitignore CHANGED
@@ -1,5 +1,19 @@
1
- # Ignore everything else but not the model folder
2
- model/
3
- *.keras
4
- *.h5
5
- *.npy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python cache
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+
7
+ # Virtual environments
8
+ venv/
9
+ .env/
10
+
11
+ # Model files
12
+ model/*.keras
13
+ model/*.h5
14
+ model/*.npy
15
+
16
+ # OS / IDE files
17
+ .DS_Store
18
+ .vscode/
19
+ .idea/