CoolFace
Datasetpublic

OpenOneRec/Explorer_LLM_Rec_Competition

Explorer_LLM_Rec_Competition This dataset contains user historical behaviors and content metadata, constructed from real user interaction histories. It covers behavior sequences across multiple domains for a single user and supports cross-domain recommendation, semantic-ID retrieval / generation, content understanding, and related tasks. Files File Description OneReason_UserProfile/ Per-user multi-domain behavior records (~500k rows)… See the full description on the dataset page: https://huggingface.co/datasets/OpenOneRec/Explorer_LLM_Rec_Competition.

sourceHugging Faceupdated 3mo agoView on Hugging Face
21likes1.9kdownloads
Dataset Card

ExplorerLLMRec_Competition

This dataset contains user historical behaviors and content metadata, constructed from real user interaction histories. It covers behavior sequences across multiple domains for a single user and supports cross-domain recommendation, semantic-ID retrieval / generation, content understanding, and related tasks.

Files

FileDescription
OneReason_UserProfile/Per-user multi-domain behavior records (~500k rows)
OneReason_Pid2Sid/Mapping from content PID to three-segment semantic ID
OneReason_Pid2Caption/Mapping from content PID to text caption
OneReason_Pid2Tag/Mapping from content PID to level-3 category tag
OneReason_General/General knowledge data

Anonymization & Join Rules

  • All pid / item id / author id / live id are hashed int64 values.
  • The user table contains no uid; each row is an anonymous user sample.
  • Hashed item ids join the three item-metadata tables via (domain, pid).
  • Regular videos and ads both come from the video system, distinguished by domain:
  • Regular video: video/video
  • Ad: video/ad
  • Some users' video-watch sequences also contain ads.

Domain Values

DomainMeaningAssociated user fieldsToken prefix
video/videoRegular short videosvideo_*, video_history_*`<\video_begin\>`
video/adAds / outer-loop contentouter_loop_*`<\ad_begin\>`
goodsE-commerce productsec_*`<\prod_begin\>`
liveLive-streaming hostslive_hist_author_id_list`<\living_begin\>`

OneReason_Pid2Sid

Semantic-ID mapping table. Converts a content ID into a three-segment semantic ID.

FieldTypeDescription
pidint64Hashed content / product / host ID
domainstringDomain of the content (see Domain Values)
sid_threelist[float]Three-segment semantic ID [s_a, s_b, s_c]

Token concatenation example:

text
video/video: <|video_begin|><s_a_123><s_b_456><s_c_789>
video/ad:    <|ad_begin|><s_a_123><s_b_456><s_c_789>
goods:       <|prod_begin|><s_a_123><s_b_456><s_c_789>
live:        <|living_begin|><s_a_123><s_b_456><s_c_789>

OneReason_Pid2Caption

Lookup of a content's text description by hashed PID.

FieldTypeDescription
pidint64Hashed content / product / host ID
domainstringDomain of the content (see Domain Values)
captionstringContent description, or stringified list of description tags

OneReason_Pid2Tag

Level-3 category tag for video, ad, and live content.

FieldTypeDescription
pidint64Hashed content / host ID
domainstringDomain; currently video/video, video/ad, live
tag_lv3stringLevel-3 category tag

OneReason_UserProfile

Each row is an anonymous user-profile sample containing behavior sequences from e-commerce, short-video, live-streaming, and ad domains.

Sequence Alignment Rules

user_history fields are grouped into 4 domains. Each domain has one or more primary sequences (pid / ID sequences), and every primary sequence is paired with a set of aligned feature sequences of identical length. If both a primary sequence and its aligned feature sequences are null, the user has no behavior in that domain.

video/video (short video)
Primary sequenceAligned feature sequences
video_sampled_pid_listvideo_neg_feedback_list, video_like_list, video_comment_list, video_forward_list, video_collect_list, video_watch_time_list, video_play_done_list, video_duration_list, video_ts_list
video_history_sampled_pid_listvideo_history_neg_feedback_list, video_history_like_list, video_history_comment_list, video_history_forward_list, video_history_collect_list, video_history_watch_time_list, video_history_play_done_list, video_history_duration_list, video_history_ts_list
video/ad (ads / outer-loop)
Primary sequenceAligned feature sequences
outer_loop_history_action_pid_list_posouter_loop_history_action_pid_list_pos_ts
outer_loop_history_action_pid_list_clickouter_loop_history_action_pid_list_click_ts, outer_loop_history_action_pid_list_click_type, outer_loop_history_action_pid_list_click_industry
outer_loop_deep_target_pidouter_loop_deep_target_pid_ts
goods (e-commerce)
Primary sequenceAligned feature sequences
ec_item_id_listec_cvr_label_list, ec_time_ms_list
ec_good_click_item_id_list_extendec_trunc_clk_lag
ec_good_order_item_id_list_extendec_trunc_buy_lag
ec_colossus_rs_item_id_listec_colossus_rs_lagv1_list, ec_colossus_rs_lagv2_list, ec_colossus_rs_is_click_list, ec_colossus_rs_is_cart_list, ec_colossus_rs_is_buy_list
live (live-streaming)
Primary sequenceAligned feature sequences
live_hist_author_id_listlive_hist_timestamp_list, live_hist_live_id_list, live_hist_show_cnt_list, live_hist_play_cnt_list, live_hist_valid_play_cnt_list, live_hist_play_duration_list, live_hist_valid_play_duration_list, live_hist_like_cnt_list, live_hist_comment_cnt_list, live_hist_reduce_similar_cnt_list, live_hist_report_live_cnt_list, live_hist_author_category_type_list, live_hist_author_type_list, live_hist_is_interactive_mp_live_list, live_hist_is_building_live_list, live_hist_is_local_life_live_list, live_hist_is_detect_game_live_list, live_hist_is_recruit_live_list, live_hist_follow_author_cnt_list

E-commerce Fields

FieldTypeDescription
ec_item_id_listlist[int64]E-commerce item ID sequence
ec_cvr_label_listlist[int64]Conversion label aligned with ec_item_id_list
ec_time_ms_listlist[int64]Absolute timestamp (ms) aligned with ec_item_id_list
ec_colossus_rs_item_id_listlist[int64]Recently shown e-commerce item ID sequence
ec_colossus_rs_lagv1_listlist[int64]Hour-level lag of ec_colossus_rs_item_id_list relative to ec_time_ms
ec_colossus_rs_lagv2_listlist[int64]Supplementary hour-level lag of ec_colossus_rs_item_id_list relative to ec_time_ms
ec_colossus_rs_is_click_listlist[int64]Click flag for each recently shown item (0/1)
ec_colossus_rs_is_cart_listlist[int64]Add-to-cart flag for each recently shown item (0/1)
ec_colossus_rs_is_buy_listlist[int64]Purchase flag for each recently shown item (0/1)
ec_good_click_item_id_list_extendlist[int64]Recently clicked e-commerce item ID sequence
ec_trunc_clk_laglist[int64]Hour-level lag of ec_good_click_item_id_list_extend relative to ec_time_ms
ec_good_order_item_id_list_extendlist[int64]Recently purchased e-commerce item ID sequence
ec_trunc_buy_laglist[int64]Hour-level lag of ec_good_order_item_id_list_extend relative to ec_time_ms
ec_time_msint64Snapshot time when e-commerce features were captured

Short Video Fields

FieldTypeDescription
video_sampled_pid_listlist[int64]Currently clicked short-video ID sequence
video_neg_feedback_listlist[float]Negative-feedback flag for currently clicked videos (0/1)
video_like_listlist[float]Like flag for currently clicked videos (0/1)
video_comment_listlist[float]Comment flag for currently clicked videos (0/1)
video_forward_listlist[float]Forward / share flag for currently clicked videos (0/1)
video_collect_listlist[float]Collect flag for currently clicked videos (0/1)
video_watch_time_listlist[float]Watch time for currently clicked videos
video_play_done_listlist[float]Play-done (full-watch) flag for currently clicked videos (0/1)
video_duration_listlist[float]Duration of currently clicked videos
video_ts_listlist[int64]Absolute timestamp of currently clicked videos
video_history_sampled_pid_listlist[int64]Historical shown short-video ID sequence
video_history_neg_feedback_listlist[float]Negative-feedback flag for historical videos (0/1)
video_history_like_listlist[float]Like flag for historical videos (0/1)
video_history_comment_listlist[float]Comment flag for historical videos (0/1)
video_history_forward_listlist[float]Forward / share flag for historical videos (0/1)
video_history_collect_listlist[float]Collect flag for historical videos (0/1)
video_history_watch_time_listlist[float]Watch time for historical videos
video_history_play_done_listlist[float]Play-done flag for historical videos (0/1)
video_history_duration_listlist[float]Duration of historical videos
video_history_ts_listlist[int64]Absolute timestamp of historical videos
video_history_seq_lenint64Length of the historical-video sequence

Live-streaming Fields

FieldTypeDescription
live_hist_timestamp_listlist[string]Date of watched live streams
live_hist_author_id_listlist[int64]Host ID of watched live streams
live_hist_live_id_listlist[int64]Live-room ID of watched live streams
live_hist_show_cnt_listlist[int64]Impression count
live_hist_play_cnt_listlist[int64]Play count
live_hist_valid_play_cnt_listlist[int64]Valid-play count
live_hist_play_duration_listlist[int64]Total play duration
live_hist_valid_play_duration_listlist[int64]Valid-play duration
live_hist_like_cnt_listlist[int64]Like count
live_hist_comment_cnt_listlist[int64]Comment count
live_hist_reduce_similar_cnt_listlist[int64]"Reduce similar" / "not interested" count
live_hist_report_live_cnt_listlist[int64]Report count
live_hist_author_category_type_listlist[string]Host category type
live_hist_author_type_listlist[string]Host type
live_hist_is_interactive_mp_live_listlist[int64]Interactive mini-program live flag (0/1)
live_hist_is_building_live_listlist[int64]Real-estate live flag (0/1)
live_hist_is_local_life_live_listlist[int64]Local-life live flag (0/1)
live_hist_is_detect_game_live_listlist[int64]Gaming live flag (0/1)
live_hist_is_recruit_live_listlist[int64]Recruitment live flag (0/1)
live_hist_follow_author_cnt_listlist[int64]List of follow-author action counts

Ad / Outer-loop Fields

FieldTypeDescription
outer_loop_history_action_pid_list_poslist[int64]Recently deep-converted outer-loop ad ID sequence
outer_loop_history_action_pid_list_pos_tslist[int64]Absolute timestamp aligned with outer_loop_history_action_pid_list_pos
outer_loop_history_action_pid_list_clicklist[int64]Recently clicked outer-loop ad ID sequence
outer_loop_history_action_pid_list_click_tslist[int64]Absolute timestamp aligned with outer_loop_history_action_pid_list_click
outer_loop_history_action_pid_list_click_typelist[string]Click type aligned with outer_loop_history_action_pid_list_click
outer_loop_history_action_pid_list_click_industrylist[string]Industry aligned with outer_loop_history_action_pid_list_click
outer_loop_deep_target_pidlist[int64]Deep-conversion target ID sequence of recent outer-loop ads
outer_loop_deep_target_pid_tslist[int64]Absolute timestamp aligned with outer_loop_deep_target_pid