Spaces:
Sleeping
Sleeping
Bellok commited on
Commit ·
2734354
1
Parent(s): 26d152e
refactor(gitignore): simplify HF pack exclusions with wildcard pattern
Browse filesReplace individual pack directory listings with a single wildcard rule
to exclude `packs/warbler-pack-hf-*/*chunk*.jsonl` files, maintaining
deployment size under 1GB by consistently ignoring all HF language packs.
- .gitignore +1 -7
.gitignore
CHANGED
|
@@ -47,13 +47,7 @@ results/
|
|
| 47 |
|
| 48 |
# HuggingFace language packs (downloaded on-demand)
|
| 49 |
# Exclude all HF packs to keep deployment size under 1GB
|
| 50 |
-
packs/warbler-pack-hf-
|
| 51 |
-
packs/warbler-pack-hf-enterprise/
|
| 52 |
-
packs/warbler-pack-hf-edustories/
|
| 53 |
-
packs/warbler-pack-hf-manuals/
|
| 54 |
-
packs/warbler-pack-hf-novels/
|
| 55 |
-
packs/warbler-pack-hf-portuguese-edu/
|
| 56 |
-
packs/warbler-pack-hf-prompt-report/
|
| 57 |
packs/debug-*/
|
| 58 |
packs/test-*/
|
| 59 |
packs/ingestion_report_*.json
|
|
|
|
| 47 |
|
| 48 |
# HuggingFace language packs (downloaded on-demand)
|
| 49 |
# Exclude all HF packs to keep deployment size under 1GB
|
| 50 |
+
packs/warbler-pack-hf-*/*chunk*.jsonl
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
packs/debug-*/
|
| 52 |
packs/test-*/
|
| 53 |
packs/ingestion_report_*.json
|