Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

T-ECD: T-Tech E-commerce Cross-Domain Dataset

image (2)

⭐️ T-ECD is a large-scale anonymized cross-domain dataset for recommender systems research, created by T-Bank's RecSys R&D team. It captures real-world e-commerce interaction patterns across multiple domains while preserving privacy through a multi-stage anonymization pipeline.

📄 Paper: T-ECD: A Large-Scale Cross-Domain E-Commerce Dataset for Industrial Recommender Systems — KDD '26 (32nd ACM SIGKDD Conference on Knowledge Discovery and Data Mining), Jeju Island, Republic of Korea.
💻 Baselines and reproducible pipeline: github.com/kliakhnovich/tecd-baselines

🎯 Overview T-ECD represents user interactions across five different e-commerce domains within a banking ecosystem:

  • Marketplace — browsing and interacting with items in an e-commerce marketplace.
  • Retail — interactions within a retail delivery service, including cart additions and completed orders.
  • Payments — online and offline financial transactions between users and brands.
  • Offers — responses to promotional content such as impressions, clicks, and partner transitions.
  • Reviews — explicit user feedback in the form of ratings and embeddings of textual comments.

Scale:

  • ~135B interactions
  • ~44M users
  • ~30M items
  • 1300+ days of temporal coverage

Additionally, we provide T-ECD Small - a compact version containing 1B interactions that excludes the Payments domain.

Metric T-ECD Small T-ECD Full
🔄 Interactions ~1B ~135B
👥 Users ~3.5M ~44M
📦 Items ~2.6M ~30M
🏪 Brands ~29K ~1M
📅 Temporal Coverage 200+ days 1300+ days
🌐 Domains 4 (excl. Payments) 5 (all domains)

Cross-domain consistency is achieved by aligning identifiers across all domains:

  • the same user_id always refers to the same individual user, and
  • the same brand_id always refers to the same brand entity.

This alignment allows researchers to seamlessly link interactions from different services, enabling studies in transfer learning, cross-domain personalization, and multi-task modeling.


📂 Data Schema

The dataset is stored in Parquet format with daily partitions ({day}).
The directory structure is as follows:

t-ecd/
├── users.pq
├── brands.pq
├── marketplace/
│ ├── events/{day}.pq
│ └── items.pq
├── retail/
│ ├── events/{day}.pq
│ └── items.pq
├── payments/
│ ├── events/{day}.pq
│ └── receipts/{day}.pq
├── offers/
│ ├── events/{day}.pq
│ └── items.pq
└── reviews/{day}.pq

Data availability

Temporal distribution of events over domains *Temporal distribution of events over domains* In line with real-world industrial environments, domain-specific data availability varies in historical depth. This reflects practical constraints including data retention policies and product lifecycle stages - newer e-commerce services naturally have shorter histories compared to established banking domains like payments and transactions.

⚙️ Events and Catalogs

  • Events: Each domain provides logs of user interactions with the following possible columns:

    • action_type — interaction type (e.g., view, click, add-to-cart, order, transaction).
    • subdomain — surface where the interaction occurred (recommendations, catalog, search, checkout, campaign); available in Marketplace and Retail.
    • item_id — present in Marketplace, Retail, and Offers; identifies a specific product or offer.
    • brand_id — present in all domains; denotes the seller, store, or partner associated with an item, offer, or transaction.
    • price — represents the monetary value of the interaction.
    • count — represents the amount of items in single interaction.
    • os — user operating system, available in Marketplace and Retail.
  • Item catalogs (items.pq): Available for Marketplace, Retail, and Offers. Each entry includes:

    • item_id
    • brand_id
    • category information (if available)
    • pretrained embedding (if available)
  • User catalog (users.pq): Contains anonymized user attributes such as region and socio-demographic cluster.

  • Brand catalog (brands.pq): Contains brand_id, brand-level metadata, and embeddings.

🧾 Special Structures

  • Receipts (payments/receipts/{day}.pq):
    Some transactions include detailed receipts with purchased items, their quantities, and prices.
    Items are aligned with Marketplace and Retail catalogs, enabling fine-grained cross-domain linkage at the product level.

  • Reviews (reviews/{day}.pq):
    Provide explicit ratings per brand.
    Raw text reviews are not included; instead, we release pretrained text embeddings to preserve privacy while enabling multimodal research.


🛠️ Data Collection

T-ECD was generated through a multi-step process:

  1. Sampling of event chains: sequences of interactions were sampled from real logs of T-Bank ecosystem services.
  2. Anonymization: user and brand identifiers were pseudonymized; sensitive attributes removed.
  3. Controlled perturbation: sampled chains were transformed with calibrated noise — timestamp jitter, perturbation of numerical attributes, generalization of rare values, and a small amount of event deletion paired with synthetic event injection — preserving structural properties such as sparsity, heavy tails, cross-domain overlaps, and behavioral contexts.

This process ensures that the dataset is privacy-preserving while remaining representative of industrial recommender system data.

📊 How much does anonymization cost?

We measured it instead of asking you to assume it. Using an identical preprocessing, splitting, and training pipeline on the original internal logs and on this released version, Recall@200 drops by 20–35% depending on domain and model — but the relative ranking of models is preserved. Conclusions you draw on T-ECD should therefore transfer. The full comparison across seven baselines and three domains is in the anonymization fidelity study (RQ1) of the paper.

⚠️ Important Note on Temporal Data Usage

To prevent data leakage, events from the final 12 hours should not be used for prediction tasks. The dataset contains temporal noise that requires maintaining a minimum 12-hour gap between the timestamp of the most recent user event and the prediction timestamp. This constraint applies to both training and testing scenarios to avoid temporal data leakage.

Download

Basic Download

from huggingface_hub import snapshot_download

snapshot_download(
    repo_id="t-tech/T-ECD",
    repo_type="dataset",
    allow_patterns="dataset/full/",
    local_dir="./t_ecd_data",
    token="<your_hf_token>" 
)

Selective Download

For advanced usage including selection of domains and date ranges we provide custom downloader tecd_downloader.py

Example usage:

from tecd_downloader import download_dataset

download_dataset(
    token="<your_hf_token>",
    dataset_path="dataset/small",
    local_dir="t_ecd_small_partial",
    domains=["retail", "marketplace"],
    day_begin=1300,
    day_end=1308,
    max_workers=10
)

📚 Citation

If you use T-ECD in your research, please cite the paper:

@inproceedings{10.1145/3770855.3817588,
  author = {Liakhnovich, Kiryl and Nikiforova, Anna and Matveev, Nikita and Skurikhin, Maxim and Veselov, Ilya and Ananyeva, Marina},
  title = {T-ECD: A Large-Scale Cross-Domain E-Commerce Dataset for Industrial Recommender Systems},
  year = {2026},
  isbn = {9798400722592},
  publisher = {Association for Computing Machinery},
  address = {New York, NY, USA},
  url = {https://doi.org/10.1145/3770855.3817588},
  doi = {10.1145/3770855.3817588},
  booktitle = {Proceedings of the 32nd ACM SIGKDD Conference on Knowledge Discovery and Data Mining V.2},
  pages = {9382–9391},
  numpages = {10},
  keywords = {recommender systems, large-scale dataset, benchmark dataset, cross-domain recommendation, e-commerce},
  location = {Republic of Korea},
  series = {KDD '26}
}

🔐 License

This dataset is released under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0) licence

Downloads last month
564