Datasets:
Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- robotics
|
| 5 |
+
- papers
|
| 6 |
+
- embeddings
|
| 7 |
+
- lancedb
|
| 8 |
+
- semantic-search
|
| 9 |
+
size_categories:
|
| 10 |
+
- 10K<n<100K
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Robotics Papers Vector Database
|
| 14 |
+
|
| 15 |
+
Semantic search over **63,381 academic papers** from 30 conference-year combinations in robotics, CV, and ML.
|
| 16 |
+
|
| 17 |
+
## Contents
|
| 18 |
+
|
| 19 |
+
- **Embeddings**: BAAI/bge-m3 (1024 dimensions) via SiliconFlow
|
| 20 |
+
- **Conferences**: CoRL, CVPR, ECCV, ICCV, ICLR, ICML, ICRA, IROS, NeurIPS, RSS, WACV (2023-2026)
|
| 21 |
+
- **Fields**: title, abstract, author, conference, year, arxiv, github, citations, keywords
|
| 22 |
+
- **Format**: LanceDB (compacted, single fragment)
|
| 23 |
+
|
| 24 |
+
## Usage
|
| 25 |
+
|
| 26 |
+
### Remote query (no download needed)
|
| 27 |
+
|
| 28 |
+
```python
|
| 29 |
+
import lancedb
|
| 30 |
+
|
| 31 |
+
db = lancedb.connect("hf://datasets/Litian2002/robotics-papers-vecdb/lancedb")
|
| 32 |
+
table = db.open_table("papers")
|
| 33 |
+
print(f"Papers: {table.count_rows()}")
|
| 34 |
+
|
| 35 |
+
# Semantic search (requires embedding your query first)
|
| 36 |
+
# See the companion repo for the full search pipeline
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
### Local usage
|
| 40 |
+
|
| 41 |
+
```bash
|
| 42 |
+
git clone https://huggingface.co/datasets/Litian2002/robotics-papers-vecdb
|
| 43 |
+
# or use huggingface_hub to download
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
### With vec-db CLI
|
| 47 |
+
|
| 48 |
+
```bash
|
| 49 |
+
# Clone the tool repo
|
| 50 |
+
git clone <vec-db-repo-url>
|
| 51 |
+
cd vec-db
|
| 52 |
+
VECDB_LANCE_DIR=/path/to/downloaded/lancedb npx tsx src/cli.ts search "robot grasping"
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## Schema
|
| 56 |
+
|
| 57 |
+
| Column | Type | Description |
|
| 58 |
+
|--------|------|-------------|
|
| 59 |
+
| vecId | string | `{conf}_{year}_{id}` compound key |
|
| 60 |
+
| title | string | Paper title |
|
| 61 |
+
| abstract | string | Paper abstract |
|
| 62 |
+
| author | string | Authors (semicolon-separated) |
|
| 63 |
+
| conference | string | Conference name |
|
| 64 |
+
| year | float | Publication year |
|
| 65 |
+
| arxiv | string | arXiv ID |
|
| 66 |
+
| github | string | GitHub repo URL |
|
| 67 |
+
| gsCitation | float | Citation count (from OpenAlex) |
|
| 68 |
+
| vector | float[1024] | bge-m3 embedding |
|