prrao87 commited on
Commit
2e6bb00
·
verified ·
1 Parent(s): 5785aa1

Update README with LanceDB examples

Browse files
Files changed (1) hide show
  1. README.md +202 -70
README.md CHANGED
@@ -4,6 +4,7 @@ task_categories:
4
  - image-to-text
5
  - image-text-to-text
6
  - image-feature-extraction
 
7
  language:
8
  - en
9
  tags:
@@ -19,124 +20,147 @@ size_categories:
19
  ---
20
  # COCO Captions 2017 (Lance Format)
21
 
22
- Lance-formatted version of the [COCO Captions 2017](https://cocodataset.org/) corpus, redistributed via [`lmms-lab/COCO-Caption2017`](https://huggingface.co/datasets/lmms-lab/COCO-Caption2017). Each row is one image with **5–7 human-written captions**, CLIP image embedding, and CLIP text embedding of the canonical caption — all stored inline.
 
 
 
 
 
 
 
23
 
24
  ## Splits
25
 
26
- | Split | Rows |
27
- |-------|------|
28
- | `val.lance` | 5,000 (canonical COCO 2017 val set) |
29
- | `test.lance` | 40,700 |
30
 
31
- > The 2017 train split (118 k images, ~18 GB of source JPEGs) is intentionally
32
- > not bundled here because the `lmms-lab/COCO-Caption2017` redistribution does
33
- > not include it. To extend with train, run `coco_captions_2017/dataprep.py`
34
- > against your local COCO 2017 train mirror.
35
 
36
  ## Schema
37
 
38
  | Column | Type | Notes |
39
  |---|---|---|
40
- | `id` | `int64` | Row index within split |
41
  | `image` | `large_binary` | Inline JPEG bytes |
42
  | `image_id` | `string` | COCO image id |
43
  | `filename` | `string` | Original filename (e.g. `000000179765.jpg`) |
44
- | `captions` | `list<string>` | All 5–7 captions |
45
- | `caption` | `string` | First caption — used as canonical text for FTS |
46
  | `image_emb` | `fixed_size_list<float32, 512>` | CLIP image embedding (cosine-normalized) |
47
  | `text_emb` | `fixed_size_list<float32, 512>` | CLIP text embedding of the canonical caption |
48
 
49
  ## Pre-built indices
50
 
51
- - `IVF_PQ` on `image_emb` and `text_emb` `metric=cosine`
52
- - `INVERTED` on `caption`
53
- - `BTREE` on `image_id`
 
 
 
 
 
 
 
 
 
 
54
 
55
- ## Quick start
 
 
56
 
57
  ```python
58
- import lance
59
 
60
- ds = lance.dataset("hf://datasets/lance-format/coco-captions-2017-lance/data/val.lance")
61
- print(ds.count_rows(), ds.schema.names)
62
- print(ds.list_indices())
63
  ```
64
 
65
  ## Load with LanceDB
66
 
67
- These tables can also be consumed by [LanceDB](https://lancedb.github.io/lancedb/), the multimodal lakehouse and embedded search library built on top of Lance, for simplified vector search and other queries.
68
 
69
  ```python
70
  import lancedb
71
 
72
  db = lancedb.connect("hf://datasets/lance-format/coco-captions-2017-lance/data")
73
  tbl = db.open_table("val")
74
- print(f"LanceDB table opened with {len(tbl)} image-caption pairs")
75
  ```
76
 
77
- > **Tip for production use, download locally first.**
78
- > ```bash
79
- > hf download lance-format/coco-captions-2017-lance --repo-type dataset --local-dir ./coco-captions-2017-lance
80
- > ```
81
-
82
- ## Vector search examples
83
 
84
- Cross-modal text→image:
85
 
86
  ```python
87
- import lance, open_clip, pyarrow as pa, torch
88
-
89
- model, _, _ = open_clip.create_model_and_transforms("ViT-B-32", pretrained="laion2b_s34b_b79k")
90
- tokenizer = open_clip.get_tokenizer("ViT-B-32")
91
- model = model.eval().cuda().half()
92
- with torch.no_grad():
93
- q = model.encode_text(tokenizer(["a giraffe eating leaves"]).cuda())
94
- q = (q / q.norm(dim=-1, keepdim=True)).float().cpu().numpy()[0]
95
 
96
  ds = lance.dataset("hf://datasets/lance-format/coco-captions-2017-lance/data/val.lance")
97
- emb_field = ds.schema.field("image_emb")
98
- hits = ds.scanner(
99
- nearest={"column": "image_emb", "q": pa.array([q.tolist()], type=emb_field.type)[0], "k": 10},
100
- columns=["image_id", "caption"],
101
- ).to_table().to_pylist()
102
  ```
103
 
104
- ### LanceDB cross-modal text→image search
 
 
 
 
 
 
105
 
106
- ```python
107
- import lancedb, open_clip, torch
108
 
109
- model, _, _ = open_clip.create_model_and_transforms("ViT-B-32", pretrained="laion2b_s34b_b79k")
110
- tokenizer = open_clip.get_tokenizer("ViT-B-32")
111
- model = model.eval().cuda().half()
112
- with torch.no_grad():
113
- q = model.encode_text(tokenizer(["a giraffe eating leaves"]).cuda())
114
- q = (q / q.norm(dim=-1, keepdim=True)).float().cpu().numpy()[0]
115
 
116
  db = lancedb.connect("hf://datasets/lance-format/coco-captions-2017-lance/data")
117
  tbl = db.open_table("val")
118
 
119
- results = (
120
- tbl.search(q.tolist(), vector_column_name="image_emb")
 
 
 
 
 
 
 
 
121
  .metric("cosine")
122
  .select(["image_id", "caption"])
123
  .limit(10)
124
  .to_list()
125
  )
 
 
 
126
  ```
127
 
128
- Full-text search:
 
 
129
 
130
  ```python
131
- ds = lance.dataset("hf://datasets/lance-format/coco-captions-2017-lance/data/val.lance")
132
- hits = ds.scanner(
133
- full_text_query="surfer riding a wave",
134
- columns=["image_id", "caption"],
135
- limit=10,
136
- ).to_table().to_pylist()
 
 
 
 
137
  ```
138
 
139
- ### LanceDB full-text search
 
 
 
 
140
 
141
  ```python
142
  import lancedb
@@ -144,19 +168,127 @@ import lancedb
144
  db = lancedb.connect("hf://datasets/lance-format/coco-captions-2017-lance/data")
145
  tbl = db.open_table("val")
146
 
147
- results = (
148
- tbl.search("surfer riding a wave")
149
- .select(["image_id", "caption"])
150
- .limit(10)
 
151
  .to_list()
152
  )
 
153
  ```
154
 
155
- ## Why Lance?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
 
157
- - One dataset carries images + image embeddings + text embeddings + indices no sidecar files.
158
- - On-disk vector and full-text indices live next to the data, so search works on local copies and on the Hub.
159
- - Schema evolution: add columns (new captions, alternate embeddings, model predictions) without rewriting the data.
160
 
161
  ## Source & license
162
 
@@ -169,6 +301,6 @@ Converted from [`lmms-lab/COCO-Caption2017`](https://huggingface.co/datasets/lmm
169
  title={Microsoft COCO: Common objects in context},
170
  author={Lin, Tsung-Yi and Maire, Michael and Belongie, Serge and Hays, James and Perona, Pietro and Ramanan, Deva and Doll{\'a}r, Piotr and Zitnick, C Lawrence},
171
  booktitle={European Conference on Computer Vision (ECCV)},
172
- year={2014},
173
  }
174
  ```
 
4
  - image-to-text
5
  - image-text-to-text
6
  - image-feature-extraction
7
+ - lance
8
  language:
9
  - en
10
  tags:
 
20
  ---
21
  # COCO Captions 2017 (Lance Format)
22
 
23
+ A Lance-formatted version of the [COCO Captions 2017](https://cocodataset.org/) corpus, redistributed via [`lmms-lab/COCO-Caption2017`](https://huggingface.co/datasets/lmms-lab/COCO-Caption2017). Each row is one image with **5–7 human-written captions**, a cosine-normalized CLIP image embedding, and a cosine-normalized CLIP text embedding of the canonical caption — all stored inline and available directly from the Hub at `hf://datasets/lance-format/coco-captions-2017-lance/data`.
24
+
25
+ ## Key features
26
+
27
+ - **Inline JPEG bytes** in the `image` column — no sidecar files, no image folders.
28
+ - **Paired CLIP embeddings in the same row** — `image_emb` and `text_emb` (ViT-B/32, 512-dim, cosine-normalized) — so cross-modal retrieval is one indexed lookup.
29
+ - **All 5–7 raw captions kept in `captions`** alongside a `caption` canonical string used for full-text search.
30
+ - **Pre-built ANN, FTS, and scalar indices** covering both embedding columns, the canonical caption, and `image_id`.
31
 
32
  ## Splits
33
 
34
+ | Split | Rows | Notes |
35
+ |-------|------|-------|
36
+ | `val.lance` | 5,000 | Canonical COCO 2017 val set |
37
+ | `test.lance` | 40,700 | Public test slice from `lmms-lab/COCO-Caption2017` |
38
 
39
+ > The 2017 train split (118 k images, ~18 GB of source JPEGs) is intentionally not bundled here because the `lmms-lab/COCO-Caption2017` redistribution does not include it. To extend with train, run `coco_captions_2017/dataprep.py` against your local COCO 2017 train mirror.
 
 
 
40
 
41
  ## Schema
42
 
43
  | Column | Type | Notes |
44
  |---|---|---|
45
+ | `id` | `int64` | Row index within split (natural join key) |
46
  | `image` | `large_binary` | Inline JPEG bytes |
47
  | `image_id` | `string` | COCO image id |
48
  | `filename` | `string` | Original filename (e.g. `000000179765.jpg`) |
49
+ | `captions` | `list<string>` | All 5–7 captions for the image |
50
+ | `caption` | `string` | First caption — canonical text used for FTS |
51
  | `image_emb` | `fixed_size_list<float32, 512>` | CLIP image embedding (cosine-normalized) |
52
  | `text_emb` | `fixed_size_list<float32, 512>` | CLIP text embedding of the canonical caption |
53
 
54
  ## Pre-built indices
55
 
56
+ - `IVF_PQ` on `image_emb` image-side vector search (cosine)
57
+ - `IVF_PQ` on `text_emb` — text-side vector search (cosine)
58
+ - `INVERTED` (FTS) on `caption` — keyword and hybrid search
59
+ - `BTREE` on `image_id` — fast lookup by COCO image id
60
+
61
+ ## Why Lance?
62
+
63
+ 1. **Blazing Fast Random Access**: Optimized for fetching scattered rows, making it ideal for random sampling, real-time ML serving, and interactive applications without performance degradation.
64
+ 2. **Native Multimodal Support**: Store text, embeddings, and other data types together in a single file. Large binary objects are loaded lazily, and vectors are optimized for fast similarity search.
65
+ 3. **Native Index Support**: Lance comes with fast, on-disk, scalable vector and FTS indexes that sit right alongside the dataset on the Hub, so you can share not only your data but also your embeddings and indexes without your users needing to recompute them.
66
+ 4. **Efficient Data Evolution**: Add new columns and backfill data without rewriting the entire dataset. This is perfect for evolving ML features, adding new embeddings, or introducing moderation tags over time.
67
+ 5. **Versatile Querying**: Supports combining vector similarity search, full-text search, and SQL-style filtering in a single query, accelerated by on-disk indexes.
68
+ 6. **Data Versioning**: Every mutation commits a new version; previous versions remain intact on disk. Tags pin a snapshot by name, so retrieval systems and training runs can reproduce against an exact slice of history.
69
 
70
+ ## Load with `datasets.load_dataset`
71
+
72
+ You can load Lance datasets via the standard HuggingFace `datasets` interface, suitable when your pipeline already speaks `Dataset` / `IterableDataset` or you want a quick streaming sample.
73
 
74
  ```python
75
+ import datasets
76
 
77
+ hf_ds = datasets.load_dataset("lance-format/coco-captions-2017-lance", split="val", streaming=True)
78
+ for row in hf_ds.take(3):
79
+ print(row["caption"])
80
  ```
81
 
82
  ## Load with LanceDB
83
 
84
+ LanceDB is the embedded retrieval library built on top of the Lance format ([docs](https://lancedb.com/docs)), and is the interface most users interact with. It wraps the dataset as a queryable table with search and filter builders, and is the entry point used by the Search, Curate, Evolve, Versioning, and Materialize-a-subset sections below.
85
 
86
  ```python
87
  import lancedb
88
 
89
  db = lancedb.connect("hf://datasets/lance-format/coco-captions-2017-lance/data")
90
  tbl = db.open_table("val")
91
+ print(len(tbl))
92
  ```
93
 
94
+ ## Load with Lance
 
 
 
 
 
95
 
96
+ `pylance` is the Python binding for the Lance format and works directly with the format's lower-level APIs. Reach for it when you want to inspect dataset internals — schema, scanner, fragments, the list of pre-built indices.
97
 
98
  ```python
99
+ import lance
 
 
 
 
 
 
 
100
 
101
  ds = lance.dataset("hf://datasets/lance-format/coco-captions-2017-lance/data/val.lance")
102
+ print(ds.count_rows(), ds.schema.names)
103
+ print(ds.list_indices())
 
 
 
104
  ```
105
 
106
+ > **Tip for production use, download locally first.** Streaming from the Hub works for exploration, but heavy random access and ANN search are far faster against a local copy:
107
+ > ```bash
108
+ > hf download lance-format/coco-captions-2017-lance --repo-type dataset --local-dir ./coco-captions-2017-lance
109
+ > ```
110
+ > Then point Lance or LanceDB at `./coco-captions-2017-lance/data`.
111
+
112
+ ## Search
113
 
114
+ The bundled `IVF_PQ` index on `image_emb` makes cross-modal text→image retrieval a single call: encode a text query with the same CLIP model used at ingest (ViT-B/32, cosine-normalized), then pass the resulting 512-d vector to `tbl.search(...)` and target `image_emb`. The example below uses the `text_emb` already stored in row 42 as a runnable stand-in for "the CLIP encoding of a caption", so the snippet works without any model loaded.
 
115
 
116
+ ```python
117
+ import lancedb
 
 
 
 
118
 
119
  db = lancedb.connect("hf://datasets/lance-format/coco-captions-2017-lance/data")
120
  tbl = db.open_table("val")
121
 
122
+ seed = (
123
+ tbl.search()
124
+ .select(["text_emb", "caption"])
125
+ .limit(1)
126
+ .offset(42)
127
+ .to_list()[0]
128
+ )
129
+
130
+ hits = (
131
+ tbl.search(seed["text_emb"], vector_column_name="image_emb")
132
  .metric("cosine")
133
  .select(["image_id", "caption"])
134
  .limit(10)
135
  .to_list()
136
  )
137
+ print("query caption:", seed["caption"])
138
+ for r in hits:
139
+ print(f" {r['image_id']:>12} {r['caption'][:70]}")
140
  ```
141
 
142
+ Because OpenAI-style CLIP embeddings are normalized, cosine is the right metric and the first hit will typically be the source image itself — a useful sanity check. Swap `vector_column_name="image_emb"` for `text_emb` to do text→text retrieval against the canonical captions instead.
143
+
144
+ Because the dataset also ships an `INVERTED` index on `caption`, the same query can be issued as a hybrid search that combines the dense vector with a keyword query. LanceDB merges the two result lists and reranks them in a single call, which is useful when a phrase like "yellow taxi" must literally appear in the caption but you still want CLIP to do the heavy lifting on visual similarity.
145
 
146
  ```python
147
+ hybrid_hits = (
148
+ tbl.search(query_type="hybrid", vector_column_name="image_emb")
149
+ .vector(seed["text_emb"])
150
+ .text("a man riding a surfboard")
151
+ .select(["image_id", "caption"])
152
+ .limit(10)
153
+ .to_list()
154
+ )
155
+ for r in hybrid_hits:
156
+ print(f" {r['image_id']:>12} {r['caption'][:70]}")
157
  ```
158
 
159
+ Tune `metric`, `nprobes`, and `refine_factor` on the vector side to trade recall against latency.
160
+
161
+ ## Curate
162
+
163
+ A typical curation pass for a captioning or contrastive-training workflow combines a content filter on the captions with a structural filter on the image. Stacking both inside a single filtered scan keeps the result small and explicit, and the bounded `.limit(500)` makes it cheap to inspect before committing the subset to anything downstream.
164
 
165
  ```python
166
  import lancedb
 
168
  db = lancedb.connect("hf://datasets/lance-format/coco-captions-2017-lance/data")
169
  tbl = db.open_table("val")
170
 
171
+ candidates = (
172
+ tbl.search("surfer OR surfboard OR wave")
173
+ .where("array_length(captions) >= 5", prefilter=True)
174
+ .select(["image_id", "caption", "captions"])
175
+ .limit(500)
176
  .to_list()
177
  )
178
+ print(f"{len(candidates)} candidates; first caption: {candidates[0]['caption'][:80]}")
179
  ```
180
 
181
+ The result is a plain list of dictionaries, ready to inspect, persist as a manifest of `image_id`s, or feed into the Evolve and Train workflows below. The `image` column is never read, so the network traffic for a 500-row candidate scan is dominated by caption text rather than JPEG bytes.
182
+
183
+ ## Evolve
184
+
185
+ Lance stores each column independently, so a new column can be appended without rewriting the existing data. The lightest form is a SQL expression: derive the new column from columns that already exist, and Lance computes it once and persists it. The example below adds `num_captions` and a `long_caption` flag, either of which can then be used directly in `where` clauses without recomputing the predicate on every query.
186
+
187
+ > **Note:** Mutations require a local copy of the dataset, since the Hub mount is read-only. See the Materialize-a-subset section at the end of this card for a streaming pattern that downloads only the rows and columns you need, or use `hf download` to pull the full split first.
188
+
189
+ ```python
190
+ import lancedb
191
+
192
+ db = lancedb.connect("./coco-captions-2017-lance/data") # local copy required for writes
193
+ tbl = db.open_table("val")
194
+
195
+ tbl.add_columns({
196
+ "num_captions": "array_length(captions)",
197
+ "long_caption": "length(caption) >= 80",
198
+ })
199
+ ```
200
+
201
+ If the values you want to attach already live in another table (offline labels, classifier predictions, a second-pass caption from a different model), merge them in by joining on `image_id`:
202
+
203
+ ```python
204
+ import pyarrow as pa
205
+
206
+ labels = pa.table({
207
+ "image_id": pa.array(["179765", "000139"]),
208
+ "scene_label": pa.array(["beach", "kitchen"]),
209
+ })
210
+ tbl.merge(labels, on="image_id")
211
+ ```
212
+
213
+ The original columns and indices are untouched, so existing code that does not reference the new columns continues to work unchanged. New columns become visible to every reader as soon as the operation commits. For column values that require a Python computation (e.g., running a second CLIP variant over the image bytes), Lance provides a batch-UDF API — see the [Lance data evolution docs](https://lance.org/guide/data_evolution/).
214
+
215
+ ## Train
216
+
217
+ Projection lets a training loop read only the columns each step actually needs. LanceDB tables expose this through `Permutation.identity(tbl).select_columns([...])`, which plugs straight into the standard `torch.utils.data.DataLoader` so prefetching, shuffling, and batching behave as in any PyTorch pipeline. For a CLIP-style contrastive run, project the JPEG bytes and a sampled caption; for a reranker or probe on top of frozen features, project the precomputed embeddings instead.
218
+
219
+ ```python
220
+ import lancedb
221
+ from lancedb.permutation import Permutation
222
+ from torch.utils.data import DataLoader
223
+
224
+ db = lancedb.connect("hf://datasets/lance-format/coco-captions-2017-lance/data")
225
+ tbl = db.open_table("val")
226
+
227
+ train_ds = Permutation.identity(tbl).select_columns(["image", "caption"])
228
+ loader = DataLoader(train_ds, batch_size=128, shuffle=True, num_workers=4)
229
+
230
+ for batch in loader:
231
+ # batch carries only the projected columns; decode the JPEG bytes,
232
+ # tokenize the captions, encode, contrastive loss...
233
+ ...
234
+ ```
235
+
236
+ Switching feature sets is a configuration change: passing `["image_emb", "text_emb"]` to `select_columns(...)` on the next run skips JPEG decoding entirely and reads only the cached 512-d vectors, which is the right shape for training a lightweight reranker or a linear probe.
237
+
238
+ ## Versioning
239
+
240
+ Every mutation to a Lance dataset, whether it adds a column, merges labels, or builds an index, commits a new version. Previous versions remain intact on disk. You can list versions and inspect the history directly from the Hub copy; creating new tags requires a local copy since tags are writes.
241
+
242
+ ```python
243
+ import lancedb
244
+
245
+ db = lancedb.connect("hf://datasets/lance-format/coco-captions-2017-lance/data")
246
+ tbl = db.open_table("val")
247
+
248
+ print("Current version:", tbl.version)
249
+ print("History:", tbl.list_versions())
250
+ print("Tags:", tbl.tags.list())
251
+ ```
252
+
253
+ Once you have a local copy, tag a version for reproducibility:
254
+
255
+ ```python
256
+ local_db = lancedb.connect("./coco-captions-2017-lance/data")
257
+ local_tbl = local_db.open_table("val")
258
+ local_tbl.tags.create("clip-vitb32-v1", local_tbl.version)
259
+ ```
260
+
261
+ A tagged version can be opened by name, or any version reopened by its number, against either the Hub copy or a local one:
262
+
263
+ ```python
264
+ tbl_v1 = db.open_table("val", version="clip-vitb32-v1")
265
+ tbl_v5 = db.open_table("val", version=5)
266
+ ```
267
+
268
+ Pinning supports two workflows. A retrieval system locked to `clip-vitb32-v1` keeps returning stable results while the dataset evolves in parallel — newly added embeddings or labels do not change what the tag resolves to. A training experiment pinned to the same tag can be rerun later against the exact same images and captions, so changes in metrics reflect model changes rather than data drift. Neither workflow needs shadow copies or external manifest tracking.
269
+
270
+ ## Materialize a subset
271
+
272
+ Reads from the Hub are lazy, so exploratory queries only transfer the columns and row groups they touch. Mutating operations (Evolve, tag creation) need a writable backing store, and a training loop benefits from a local copy with fast random access. Both can be served by a subset of the dataset rather than the full split. The pattern is to stream a filtered query through `.to_batches()` into a new local table; only the projected columns and matching row groups cross the wire, and the bytes never fully materialize in Python memory.
273
+
274
+ ```python
275
+ import lancedb
276
+
277
+ remote_db = lancedb.connect("hf://datasets/lance-format/coco-captions-2017-lance/data")
278
+ remote_tbl = remote_db.open_table("test")
279
+
280
+ batches = (
281
+ remote_tbl.search("surfer OR surfboard OR wave")
282
+ .where("array_length(captions) >= 5")
283
+ .select(["image_id", "image", "caption", "captions", "image_emb", "text_emb"])
284
+ .to_batches()
285
+ )
286
+
287
+ local_db = lancedb.connect("./coco-surf-subset")
288
+ local_db.create_table("train", batches)
289
+ ```
290
 
291
+ The resulting `./coco-surf-subset` is a first-class LanceDB database. Every snippet in the Evolve, Train, and Versioning sections above works against it by swapping `hf://datasets/lance-format/coco-captions-2017-lance/data` for `./coco-surf-subset`.
 
 
292
 
293
  ## Source & license
294
 
 
301
  title={Microsoft COCO: Common objects in context},
302
  author={Lin, Tsung-Yi and Maire, Michael and Belongie, Serge and Hays, James and Perona, Pietro and Ramanan, Deva and Doll{\'a}r, Piotr and Zitnick, C Lawrence},
303
  booktitle={European Conference on Computer Vision (ECCV)},
304
+ year={2014}
305
  }
306
  ```