The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: ArrowTypeError
Message: ("Expected bytes, got a 'list' object", 'Conversion failed for column user_002 with type object')
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 246, in _generate_tables
pa_table = paj.read_json(
^^^^^^^^^^^^^^
File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
pyarrow.lib.ArrowInvalid: JSON parse error: Missing a name for object member. in row 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
return get_rows(
^^^^^^^^^
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/src/services/worker/src/worker/utils.py", line 77, in get_rows
rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2690, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2227, in __iter__
for key, pa_table in self._iter_arrow():
^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2251, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 494, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 384, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 287, in _generate_tables
pa_table = pa.Table.from_pandas(df, preserve_index=False)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "pyarrow/table.pxi", line 4795, in pyarrow.lib.Table.from_pandas
File "/usr/local/lib/python3.12/site-packages/pyarrow/pandas_compat.py", line 637, in dataframe_to_arrays
arrays = [convert_column(c, f)
^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/pyarrow/pandas_compat.py", line 625, in convert_column
raise e
File "/usr/local/lib/python3.12/site-packages/pyarrow/pandas_compat.py", line 619, in convert_column
result = pa.array(col, type=type_, from_pandas=True, safe=safe)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "pyarrow/array.pxi", line 365, in pyarrow.lib.array
File "pyarrow/array.pxi", line 91, in pyarrow.lib._ndarray_to_array
File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
pyarrow.lib.ArrowTypeError: ("Expected bytes, got a 'list' object", 'Conversion failed for column user_002 with type object')Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
OmniBehavior: Towards Real-world Human Behavior Simulation
Benchmarking LLMs on Long-horizon, Cross-scenario, Heterogeneous Behavior Traces
π Website | π Paper | π Dataset | π₯³ Citation
π The full OmniBehavior dataset is now publicly available on HuggingFace, including complete raw user behavior traces, evaluation code, and synchronized releases of both Chinese and English versions.
π₯ Download here: OmniBehavior Dataset
What's New
- [2026.05.18] We have released the complete dataset and evaluation code! Please check them out and feel free to use them in your research. β¨
- [2026.04.10] We have released the OmniBehavior paper! Please check it out for more details on our comprehensive user behavior analysis. π₯π₯π₯
Multiple Scenarios
OmniBehavior captures real user behaviors across several interactive scenarios in Kuaishou:
| Scene Type | Description |
|---|---|
| Live Streaming | Interactions within live stream rooms (e.g., watching duration, comments, likes, gifts). |
| Video Browsing | Behaviors related to browsing and watching short videos. |
| E-commerce | Shopping-related activities, including browsing products, managing carts, purchasing, and interactions with customer service agents. |
| Advertisement | User interactions with recommended advertisements (views, clicks, conversions). |
| Search Behavior | All in-app search activities, including but not limited to video and marketplace queries. |
Dataset Highlights
The released dataset contains user behavior traces from Kuaishou:
- Long-term Observation: The data spans 90 days (from
2025-09-01to2025-11-30), providing a substantial timeline to observe evolving user interests and habitual patterns. - Real Interaction: The dataset contains lots of real actions, capturing a consistent and detailed trail of user interactions.
- Comprehensive Scenario Coverage: The schema supports capturing behavior across mainstream short-video platform scenarios.
Case Study Value
The long-horizon traces make the dataset useful for several research directions:
- Long-term Interest Modeling: The 3-month span allows for the specific tracking of interest shifts and stability over time.
- Cross-Domain Behavior Analysis: By covering diverse scenarios, it enables research into how behaviors in one domain (e.g., watching a streamer) correlate with actions in another (e.g., purchasing products or clicking ads).
- User Behavior Simulation: This detailed trajectory provides a ground truth for building user simulators, allowing to evaluate how well agents can simulate real, long-term human behavior patterns in complex environments.
Data Structure
The data is organized by user ID. Each user entry contains a textual profile and a chronological history of actions.
{
"user_ID": {
"user_profile": "Description of the user (e.g., demographics, education, etc.)...",
"action_history": [
{
"type": "Scenario Type",
"timestamp": "YYYY-MM-DD HH:MM:SS",
"context": {
"field_name": "value",
...
},
"action": [
{
"type": "specific_behavior",
"attribute": "value"
}
...
]
},
...
]
}
}
Installation and Usage
Setup
pip install -r requirements.txt
Before running, download the user data provided with the paper and place the JSON files under:
./raw_user_data
Model keys and endpoints are not included. Edit the placeholder values in src/config.py before running evaluation.
Model Deployment
For local model evaluation, we recommend serving models with vLLM. See the vLLM repository for installation instructions.
Start an OpenAI-compatible vLLM server with:
vllm serve $MODEL_PATH \
--port $PORT1 \
--served-model-name $SERVED_MODEL_NAME \
--enable-prefix-caching \
--enable-chunked-prefill \
-tp 8 \
--gpu_memory_utilization=0.9 \
--enable-prompt-tokens-details
Then add the endpoint to MODELS_TO_EVALUATE in src/config.py:
{
"name": "YourModel", # Referenced by the MODEL variable in scripts/*.sh.
"type": "openai_compatible",
"api_key": "sk-dummy",
"endpoints": [
{"url": "http://HOST:PORT/v1", "max_workers": 20},
],
"model": "SERVED_MODEL_NAME", # Must match $SERVED_MODEL_NAME used by vLLM.
"temperature": 0.1,
"use_logprobs": False,
}
Example Script
bash scripts/gpt5.sh
License and Ethics
This code and dataset are released under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0) for non-commercial use only. Any commercial use requires prior formal permission.
This dataset may include information derived from real users. While efforts have been made to anonymize sensitive data, privacy risks may remain. By accessing or using this dataset, you agree to use it only for lawful, ethical, and privacy-preserving purposes. You must not use it to identify, re-identify, contact, profile, track, or infer the identity of any individual.
Use of this dataset indicates your agreement to comply with all applicable privacy, data protection, and research ethics requirements.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
π Citation
If you find our work useful in your research, please consider citing our paper.
@misc{chen2026omnibehavior,
title={Towards Real-world Human Behavior Simulation: Benchmarking Large Language Models on Long-horizon, Cross-scenario, Heterogeneous Behavior Traces},
author={Jiawei Chen and Ruoxi Xu and Boxi Cao and Ruotong Pan and Yunfei Zhang and Yifei Hu and Yong Du and Tingting Gao and Yaojie Lu and Yingfei Sun and Xianpei Han and Le Sun and Xiangyu Wu and Hongyu Lin},
year={2026},
eprint={2604.08362},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2604.08362},
}
- Downloads last month
- 796
