File size: 2,606 Bytes
ae2befe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | ---
license: cc-by-4.0
pretty_name: Amazon Berkeley Objects
tags:
- computer-vision
- image-retrieval
- product-catalog
- hierarchy
- 3d
configs:
- config_name: listings
data_files:
- split: train
path: data/listings/*.parquet
- config_name: images
data_files:
- split: train
path: data/images/*.parquet
- config_name: spins
data_files:
- split: train
path: data/spins/*.parquet
- config_name: 3dmodels
data_files:
- split: train
path: data/3dmodels/*.parquet
---
# Amazon Berkeley Objects
This is a Hugging Face metadata mirror of the Amazon Berkeley Objects dataset
for reproducible research and HyperView demos. The original dataset is provided
by Amazon.com and UC Berkeley.
This mirror stores metadata tables and official S3 asset URLs. It does not
duplicate catalog images, turntable images, or 3D models as binary files.
## Load
```python
from datasets import load_dataset
listings = load_dataset("hyper3labs/amazon-berkeley-objects", "listings", split="train")
images = load_dataset("hyper3labs/amazon-berkeley-objects", "images", split="train")
spins = load_dataset("hyper3labs/amazon-berkeley-objects", "spins", split="train")
models = load_dataset("hyper3labs/amazon-berkeley-objects", "3dmodels", split="train")
```
## Tables
- `listings`: all product listings with normalized hierarchy columns and
`raw_listing_json` preserving the original listing object.
- `images`: full image metadata with official small and original image URLs.
- `spins`: full spin / 360-degree view metadata with official image URLs.
- `3dmodels`: full 3D model metadata with official GLB URLs.
## Added convenience columns
The `listings` table adds:
- `title`
- `brand`
- `color`
- `style`
- `product_type`
- `product_type_readable`
- `node_paths`
- `department`
- `hierarchy_path`
- `main_image_path`
- `main_image_url`
## License
Amazon Berkeley Objects is licensed under Creative Commons Attribution 4.0
International (CC BY 4.0).
Users must read and comply with the original ABO license and attribution
requirements before using the data.
Official dataset page:
https://amazon-berkeley-objects.s3.amazonaws.com/index.html
AWS Open Data Registry:
https://registry.opendata.aws/amazon-berkeley-objects/
## Attribution
Credit for the data, including all images and 3D models, must be given to
Amazon.com.
Credit for building the dataset, archives, and benchmark sets must be given to
Matthieu Guillaumin, Thomas Dideriksen, Kenan Deng, Himanshu Arora, Jasmine
Collins, and Jitendra Malik, with the complete author list in the ABO paper and
official documentation.
|