Documentation Index
Fetch the complete documentation index at: https://lancedb-bcbb4faf-docs-namespace-typescript-examples.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
View on Hugging Face
Source dataset card and downloadable files for
lance-format/docvqa-lance.lmms-lab/DocVQA (DocVQA config). Each row carries the page image as inline JPEG bytes, the question and reference answer span(s), the original DocVQA question-type tags, UCSF Industry Documents Library provenance, and paired CLIP embeddings for the image and the question — all available directly from the Hub at hf://datasets/lance-format/docvqa-lance/data.
Key features
- Inline page image bytes in the
imagecolumn — no sidecar files, no document folders. - Paired CLIP embeddings in the same row —
image_embandquestion_emb(ViT-B/32, 512-dim, cosine-normalized) — so visual and textual retrieval are one indexed lookup. - All reference answer spans preserved in
answersalongside a canonicalanswerstring used for full-text search. - Pre-built ANN, FTS, scalar, and label-list indices covering both embedding columns, the question and answer text, the document ids, and the
question_typestag list.
Splits
| Split | Rows | Notes |
|---|---|---|
validation.lance | 5,349 | Canonical DocVQA validation set |
test.lance | 5,188 | Public test slice from lmms-lab/DocVQA |
Schema
| Column | Type | Notes |
|---|---|---|
id | int64 | Row index within split (natural join key) |
image | large_binary | Inline JPEG bytes (page image) |
image_id | string? | DocVQA docId (alias of doc_id) |
question_id | string? | DocVQA questionId |
question | string | Natural-language question |
answers | list<string> | Reference answer span(s) |
answer | string | First reference answer — canonical, used for FTS |
doc_id | string? | DocVQA document id |
ucsf_document_id | string? | UCSF Industry Documents Library id |
ucsf_document_page_no | string? | Page number within the source document |
data_split | string? | Original split label from the source |
question_types | list<string> | DocVQA question-type tags (form, figure, table, …) |
image_emb | fixed_size_list<float32, 512> | CLIP image embedding (cosine-normalized) |
question_emb | fixed_size_list<float32, 512> | CLIP text embedding of the question |
Pre-built indices
IVF_PQonimage_emb— image-side vector search (cosine)IVF_PQonquestion_emb— text-side vector search (cosine)INVERTED(FTS) onquestionandanswer— keyword and hybrid searchBTREEonimage_id,question_id,doc_id— fast lookup by document or question idLABEL_LISTonquestion_types— set-membership filtering over question-type tags
Why Lance?
- 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.
- 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.
- 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.
- 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.
- Versatile Querying: Supports combining vector similarity search, full-text search, and SQL-style filtering in a single query, accelerated by on-disk indexes.
- 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.
Load with datasets.load_dataset
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.
Load with LanceDB
LanceDB is the embedded retrieval library built on top of the Lance format (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, Train, Versioning, and Materialize-a-subset sections below.Load with Lance
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, and the list of pre-built indices.
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:Then point Lance or LanceDB at./docvqa-lance/data.
Search
The bundledIVF_PQ index on question_emb makes question-to-question retrieval a single call: encode a query with the same CLIP model used at ingest (ViT-B/32, cosine-normalized) and pass the resulting 512-d vector to tbl.search(...). The example below uses the question_emb already stored in row 42 as a runnable stand-in, so the snippet works without any model loaded.
vector_column_name="question_emb" for image_emb to retrieve pages whose visual layout is similar to a given embedding — useful when you want to find other forms or invoices that look like a seed page.
Because the dataset also ships an INVERTED index on question and answer, 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 “invoice total” or “date of birth” must literally appear in the question but you still want CLIP to do the heavy lifting on semantic similarity.
metric, nprobes, and refine_factor on the vector side to trade recall against latency.
Curate
A typical curation pass for a document-VQA workflow combines a content filter on the question with a structural filter on the question-type tags. 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. The example below collects form-style questions that mention a date, which is a common slice for evaluating form-understanding behaviour.
question_ids, 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 question and answer text rather than page JPEGs.
Evolve
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 addsanswer_length, an is_form_question flag, and a has_table flag, any of which can then be used directly in where clauses without recomputing the predicate on every query.
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.
question_id:
Train
Projection lets a training loop read only the columns each step actually needs. LanceDB tables expose this throughPermutation.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 fine-tuning a document-VLM, project the page bytes plus the question and answer; columns added in the Evolve section above cost nothing per batch until they are explicitly projected.
["image_emb", "question_emb", "answer"] 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 answer-classifier or a linear probe on top of frozen features.
Versioning
Every mutation to a Lance dataset, whether it adds a column, merges predictions, 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.eval-v1 keeps producing comparable scores while the dataset evolves in parallel — newly added prediction columns 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 pages and questions, so changes in metrics reflect model changes rather than data drift. Neither workflow needs shadow copies or external manifest tracking.
Materialize a subset
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.
./docvqa-forms-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/docvqa-lance/data for ./docvqa-forms-subset.
Source & license
Converted fromlmms-lab/DocVQA. DocVQA is released under the MIT license; the underlying documents come from the UCSF Industry Documents Library — review their access conditions before redistribution.