Yash Sakhale commited on
Commit
99f283a
·
1 Parent(s): 40f1eb1

Remove binary model files - will be generated at runtime or loaded from HF Hub

Browse files
Files changed (1) hide show
  1. .gitignore +5 -3
.gitignore CHANGED
@@ -39,7 +39,9 @@ problem3/
39
  *.tmp
40
  *.log
41
 
42
- # Model files (optional - include if you want to deploy with models)
43
- # Uncomment the line below if you DON'T want to include trained models
44
- # models/
 
 
45
 
 
39
  *.tmp
40
  *.log
41
 
42
+ # Model files (binary files not allowed in HF Spaces git - use XET or generate at runtime)
43
+ models/*.pkl
44
+ models/*.json
45
+ # Keep models directory but exclude contents
46
+ !models/.gitkeep
47