tags:
- recommender
- multimodal
- amazon
- beauty
- json
- npy
- parquet
- faiss
- lora
- huggingface-dataset
π¦ Amazon Beauty Subset for MMR-Agentic-CoVE
This dataset contains preprocessed files for the "Beauty" category from the Amazon Reviews dataset. It supports the MMR-Agentic-CoVE recommender system, including FAISS indexes, LoRA-tuned model weights, and multimodal features.
Use this dataset with the backend cove-api and frontend cove-ui for live testing.
- license: cc-by-nc-4.0
Here is a revised and complete version of your README.md for the Hugging Face dataset repo mayankc-amazon_beauty_subset, reflecting the reorganized folder structure, usage examples, and links to your API/UI Spaces:
βΈ»
Amazon Beauty Subset β Structured Dataset for MMR-Agentic-CoVE Recommender
This is a clean, categorized subset of the Amazon Beauty Products Dataset curated for the MMR-Agentic-CoVE recommender system. It includes multimodal item data (text, image, metadata), user interactions, FAISS indexes, model outputs, and embedding vectors β all organized for efficient retrieval by the API and UI spaces.
ποΈ Folder Structure
. βββ json/ # Configs, maps, user/item sequences βββ npy/ # Embedding arrays (text, image, meta, CoVE) βββ parquet/ # Tabular structured data βββ model/ # PEFT/LoRA model weights βββ faiss/ # FAISS index files for nearest neighbor search βββ README.md
π Key Files
json/
defaults.json: Weight config for fusion modesitem_ids.json,user_seq.json,cove_item_ids.json: ID mappings and test sets
npy/
text.npy,image.npy,meta.npy: Item modality embeddingscove_logits.npy,full_cove_embeddings.npy: CoVE model outputs
parquet/
reviews.parquet,items_catalog.parquet: Base product metadatauser_text_emb.parquet: User text embedding vectors
model/
model.safetensors,adapter_model.safetensors: LoRA fine-tuned weights
faiss/
items_beauty_concat.faiss,items_beauty_weighted.faiss: FAISS indexes for fast item retrieval
π Paired Spaces
These Spaces dynamically fetch data from this dataset repo using huggingface_hub.
π Example: Load Embeddings via huggingface_hub
from huggingface_hub import hf_hub_download
import numpy as np
# Load text embeddings
text_emb_path = hf_hub_download(
repo_id="mickey1976/mayankc-amazon_beauty_subset",
repo_type="dataset",
filename="npy/text.npy"
)
text_embeddings = np.load(text_emb_path)
βΈ»
π Citation
Data originally from:
Ni, J., et al. (2019). Amazon Review Dataset. UCSD.
https://nijianmo.github.io/amazon/index.html
Used here in support of MMR-Agentic-CoVE multimodal recommender architecture.
βΈ»
π Maintained by
Mayank Choudhary
GitHub | Hugging Face
---
### β
Instructions to Save
1. Overwrite the current `README.md` in your dataset root directory:
```bash
nano README.md
(Paste the content above, save with Ctrl + O, exit with Ctrl + X)
2. Commit and push:
git add README.md
git commit -m "Update README with folder structure and usage guide"
git push
Here is a shorter version of the README.md suitable for the Hugging Face dataset card view (top-level summary users see when browsing your dataset):
βΈ»
# π¦ Amazon Beauty Subset for MMR-Agentic-CoVE
This dataset powers the **MMR-Agentic-CoVE** recommender system and contains a compact, multimodal slice of the Amazon Beauty product data. It includes:
- β
JSON configs & sequences
- β
NPY embeddings (text, image, meta, CoVE)
- β
Parquet structured tables
- β
PEFT model weights (LoRA/adapter)
- β
FAISS indexes for fast retrieval
## π§ Folder Structure
json/ β ID maps, defaults, sequences
npy/ β Embeddings & logits
parquet/ β Metadata & user-item tables
model/ β Fine-tuned model weights
faiss/ β Item FAISS indexes
## π Paired Spaces
- **API Backend** β [CoVE API](https://huggingface.co/spaces/mickey1976/cove-api)
- **Gradio UI** β [CoVE UI](https://huggingface.co/spaces/mickey1976/cove-ui)
## π Citation
> Ni, J., et al. (2019). *Amazon Review Dataset*. UCSD.
> https://nijianmo.github.io/amazon/index.html
Maintained by [@mickey1976](https://huggingface.co/mickey1976)
βΈ»