CoolFace
Datasetpublic

xxxxdszz/personal-query-pet-supplies

Personal Query: Pet Supplies This dataset contains personalized product search queries for the Pet_Supplies category. Each record is built from the Personal Query pipeline: Stage 6 generated correct personalized queries. Stage 7 injected user-specific error query variants when a matching error pattern was available. Stage 5 provided the user profile complexity level. Files data.jsonl: all correct Stage 6 queries. Rows without Stage 7 error query keep… See the full description on the dataset page: https://huggingface.co/datasets/xxxxdszz/personal-query-pet-supplies.

sourceHugging Faceotherupdated 5mo agoView on Hugging Face
0likes16downloads
Dataset Card

Personal Query: Pet Supplies

This dataset contains personalized product search queries for the Pet_Supplies category.

Each record is built from the Personal Query pipeline:

  • —Stage 6 generated correct personalized queries.
  • —Stage 7 injected user-specific error query variants when a matching error pattern was available.
  • —Stage 5 provided the user profile complexity level.

Files

  • —data.jsonl: all correct Stage 6 queries. Rows without Stage 7 error query keep error_query as null.
  • —paired_data.jsonl: only rows where a correct query has a paired error query.
  • —summary.json: generation statistics for this category.

Dataset Size

MetricCount
Total rows in data.jsonl40814
Rows in paired_data.jsonl2589
Rows without noisy query38225

Rows By Query Category

query_categoryrows
deep20407
wide20407

Paired Rows By Query Category

query_categoryrows
deep1954
wide635

Rows By Complexity

query_category:levelrows
deep:04293
deep:19288
deep:24761
deep:32065
wide:09225
wide:18423
wide:22276
wide:3483

Schema

FieldTypeDescription
categorystringProduct category.
uuidstringUser identifier.
asinstringAmazon product identifier.
query_categorystringQuery type: wide or deep.
complexity_levelintegerComplexity level of the generated Stage 6 query.
profile_complexity_levelintegerUser profile complexity level from Stage 5.
correct_querystringCorrect query generated in Stage 6.
correct_word_countintegerWord count of correct_query.
attrs_usedobjectProduct attributes used to generate the query.
has_error_querybooleanWhether a Stage 7 error query is available.
error_querystring or nullError query generated in Stage 7.
injected_errorslistInjected error metadata for error query generation.

Loading

python
from datasets import load_dataset

full = load_dataset("xxxxdszz/personal-query-pet-supplies", name="full", split="train")
paired = load_dataset("xxxxdszz/personal-query-pet-supplies", name="paired", split="train")

Intended Use

This dataset is intended for research on personalized product search, query generation, error query robustness, and retrieval evaluation.

Data Notes

The queries are synthetic outputs generated from user/product signals in the local Personal Query pipeline. The error queries are generated by injecting user-specific writing error patterns. Review license and redistribution requirements for any upstream source data before external reuse.