Add README screenshots and clone notes
Browse files
.gitattributes
CHANGED
|
@@ -36,3 +36,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 36 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 37 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 38 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 36 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 37 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 38 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
docs/images/smart-workflow.png filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
docs/images/workbench-overview.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -34,6 +34,31 @@ This repository packages a local CLIP + FAISS retrieval service for ecommerce bu
|
|
| 34 |
|
| 35 |
---
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
## What This Is
|
| 38 |
|
| 39 |
`bundle-clip` is a self-contained local retrieval bundle used by the Auto Bundle workbench. It combines:
|
|
@@ -53,6 +78,8 @@ The pack is designed for fast local review, private experimentation, and offline
|
|
| 53 |
bundle-clip/
|
| 54 |
ββ app/
|
| 55 |
β ββ listing_search.html
|
|
|
|
|
|
|
| 56 |
ββ work/
|
| 57 |
β ββ full_listing_server.py
|
| 58 |
β ββ stdio_listing_worker.py
|
|
@@ -87,6 +114,27 @@ bundle-clip/
|
|
| 87 |
|
| 88 |
Large files are tracked with Git LFS. Run `git lfs pull` after cloning.
|
| 89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
## Quick Start
|
| 91 |
|
| 92 |
### 1. Clone With LFS
|
|
|
|
| 34 |
|
| 35 |
---
|
| 36 |
|
| 37 |
+
## Screenshots
|
| 38 |
+
|
| 39 |
+
<p align="center">
|
| 40 |
+
<img src="docs/images/bundle-clip-search.png" alt="Bundle CLIP local listing search UI" width="92%">
|
| 41 |
+
</p>
|
| 42 |
+
|
| 43 |
+
<p align="center">
|
| 44 |
+
<em>Local listing search page served by the bundled 9990 runtime.</em>
|
| 45 |
+
</p>
|
| 46 |
+
|
| 47 |
+
<table>
|
| 48 |
+
<tr>
|
| 49 |
+
<td width="50%">
|
| 50 |
+
<img src="docs/images/smart-workflow.png" alt="Auto Bundle smart workflow">
|
| 51 |
+
</td>
|
| 52 |
+
<td width="50%">
|
| 53 |
+
<img src="docs/images/workbench-overview.png" alt="Temu and 1688 workbench overview">
|
| 54 |
+
</td>
|
| 55 |
+
</tr>
|
| 56 |
+
<tr>
|
| 57 |
+
<td align="center"><strong>Smart Bundle Workflow</strong></td>
|
| 58 |
+
<td align="center"><strong>Integrated Workbench</strong></td>
|
| 59 |
+
</tr>
|
| 60 |
+
</table>
|
| 61 |
+
|
| 62 |
## What This Is
|
| 63 |
|
| 64 |
`bundle-clip` is a self-contained local retrieval bundle used by the Auto Bundle workbench. It combines:
|
|
|
|
| 78 |
bundle-clip/
|
| 79 |
ββ app/
|
| 80 |
β ββ listing_search.html
|
| 81 |
+
ββ docs/
|
| 82 |
+
β ββ images/
|
| 83 |
ββ work/
|
| 84 |
β ββ full_listing_server.py
|
| 85 |
β ββ stdio_listing_worker.py
|
|
|
|
| 114 |
|
| 115 |
Large files are tracked with Git LFS. Run `git lfs pull` after cloning.
|
| 116 |
|
| 117 |
+
## Clone & Update
|
| 118 |
+
|
| 119 |
+
Yes, you can clone this repository directly. The only catch is that the model weights and FAISS index are stored with Git LFS, so a complete first-time setup should be:
|
| 120 |
+
|
| 121 |
+
```powershell
|
| 122 |
+
git lfs install
|
| 123 |
+
git clone https://huggingface.co/mikaassa/bundle-clip
|
| 124 |
+
cd bundle-clip
|
| 125 |
+
git lfs pull
|
| 126 |
+
```
|
| 127 |
+
|
| 128 |
+
If Git LFS is missing, the large assets will look like tiny text pointer files and the server will fail when loading the model or index.
|
| 129 |
+
|
| 130 |
+
To update an existing local copy later:
|
| 131 |
+
|
| 132 |
+
```powershell
|
| 133 |
+
cd bundle-clip
|
| 134 |
+
git pull
|
| 135 |
+
git lfs pull
|
| 136 |
+
```
|
| 137 |
+
|
| 138 |
## Quick Start
|
| 139 |
|
| 140 |
### 1. Clone With LFS
|
data/full_listing_index/cleaning_report.json
CHANGED
|
@@ -1,8 +1,3 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
"dropped_missing": 0,
|
| 5 |
-
"dropped_short": 7554,
|
| 6 |
-
"dropped_duplicate": 5540,
|
| 7 |
-
"updated_at": "2026-08-21 09:13:05"
|
| 8 |
-
}
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4dd9b0ece9faa07b1dbda86045f7ea0ab4611f9beb2fe4c5033f07b6accdf3e3
|
| 3 |
+
size 164
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data/full_listing_index/progress.json
CHANGED
|
@@ -1,6 +1,3 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
"status": "complete",
|
| 5 |
-
"updated_at": "2026-08-21 09:51:05"
|
| 6 |
-
}
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9bf653ec4f7d9fe4a7dbcf299058a9007cd3ba98dd1793b6a32d8c71cc0c2b4f
|
| 3 |
+
size 112
|
|
|
|
|
|
|
|
|
docs/images/bundle-clip-search.png
ADDED
|
docs/images/smart-workflow.png
ADDED
|
Git LFS Details
|
docs/images/workbench-overview.png
ADDED
|
Git LFS Details
|