Dataset Viewer
Auto-converted to Parquet
The dataset viewer is not available for this split.
The number of columns (1036) exceeds the maximum supported number of columns (1000). This is a current limitation of the datasets viewer. You can reduce the number of columns if you want the viewer to work.
Error code:   TooManyColumnsError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/datasets-cards)
# Amazon Product Vector Database

This dataset contains vector embeddings for Amazon products, including both text and image embeddings.

## Contents
- `embeddings.parquet`: Contains text embeddings, image embeddings, and metadata for all products

## Usage
```python
import pandas as pd
from datasets import load_dataset

# Load the dataset
dataset = load_dataset("chen196473/amazon_vector_database")

# Read the data
df = pd.read_parquet("embeddings.parquet")

# Extract embeddings
text_embeddings = df[[col for col in df.columns if col.startswith('text_embedding_')]].values
image_embeddings = df[[col for col in df.columns if col.startswith('image_embedding_')]].values
```
Downloads last month
15

Space using chen196473/amazon_vector_database 1