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
βοΈ T-ECD is a large-scale synthetic 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 ensuring complete anonymity through synthetic generation.
π― 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

βοΈ 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
): Containsbrand_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:
- Sampling of event chains: sequences of interactions were sampled from real logs of T-Bank ecosystem services.
- Anonymization: user and brand identifiers were pseudonymized; sensitive attributes removed.
- Synthetic generation: based on real distributions and event patterns, new synthetic interaction chains were produced, 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.
β οΈ 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
)
π 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
- 260