Datasets:
The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: CastError
Message: Couldn't cast
no_extracted_log_reason: string
role: string
tool_input: string
agent: string
content: string
type: string
model: string
turn_id: int64
is_conversational: bool
tool_name: string
session_id: string
to
{'session_id': Value('string'), 'turn_id': Value('int64'), 'agent': Value('string'), 'model': Value('string'), 'role': Value('string'), 'type': Value('string'), 'content': Value('string'), 'tool_name': Value('string'), 'tool_input': Value('string'), 'is_conversational': Value('bool')}
because column names don't match
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 149, in get_rows_or_raise
return get_rows(
dataset=dataset,
...<4 lines>...
column_names=column_names,
)
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 129, in get_rows
rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
File "/src/services/worker/src/worker/utils.py", line 489, in safe_iter
yield from ds.decode(False) if ds.features else ds
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2818, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2355, in __iter__
for key, pa_table in self._iter_arrow():
~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2380, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 343, in _generate_tables
self._cast_table(pa_table, json_field_paths=json_field_paths),
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
pa_table = table_cast(pa_table, self.info.features.arrow_schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2369, in table_cast
return cast_table_to_schema(table, schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2297, in cast_table_to_schema
raise CastError(
...<3 lines>...
)
datasets.table.CastError: Couldn't cast
no_extracted_log_reason: string
role: string
tool_input: string
agent: string
content: string
type: string
model: string
turn_id: int64
is_conversational: bool
tool_name: string
session_id: string
to
{'session_id': Value('string'), 'turn_id': Value('int64'), 'agent': Value('string'), 'model': Value('string'), 'role': Value('string'), 'type': Value('string'), 'content': Value('string'), 'tool_name': Value('string'), 'tool_input': Value('string'), 'is_conversational': Value('bool')}
because column names don't matchNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Dataset Card for CollabSkill Trajectories
Dataset Summary
CollabSkill is a framework for studying how real human workers collaborate with AI agents on occupational tasks. Participants were matched to tasks based on their occupational backgrounds and paired with one of five AI agents. The release contains interaction logs, participant and session metadata, task rubrics, automated grading results, and Bayesian CollabSkill ratings for humans and agents.
The tasks require realistic work products such as spreadsheets, documents, presentations, PDFs, and other deliverables. They originate from GDPVal, APEX, and APEX-Agents and cover 10 O*NET occupational sectors. See the paper for the complete collection and evaluation methodology.
Dataset Structure
release/
βββ README.md
βββ interaction_logs/
β βββ <session_id>/
β βββ extracted_log.jsonl
βββ leaderboard_data/
βββ participants.json
βββ ratings.json
βββ scores.json
βββ sessions.json
βββ tasks.json
Interaction Logs
Each folder under interaction_logs/ is named with a session_id. A standard extracted_log.jsonl contains one JSON object per line with the following fields:
session_id(string): Session UUID; matches the containing directory.turn_id(integer): Record order or turn identifier within the extracted session.agent(string): Canonical agent name for the session.model(string): Canonical model identifier for the session.role(string): Record source, such asuser,assistant,tool, orsystem.type(string): Source-specific event type, such asmessage,tool_call,tool_result, orstatus.content(string): Textual content or extracted event description.tool_name(string): Tool name when applicable; otherwise an empty string.tool_input(string): Extracted tool input when applicable; otherwise an empty string.is_conversational(boolean): Whether the record is part of the user-facing conversation.
61 sessions do not have an extractable interaction log because the submitted log was missing, incomplete, or invalid. These files intentionally retain a distinct one-line sentinel format:
{"no_extracted_log_reason":"Wrong log file submission."}
Leaderboard Data
participants.json: participant records, including pseudonymoususer_id, task assignments and progress, years of occupational experience, LLM-use demographics, and optional pre/post-study survey responses.sessions.json: session records, exactly matching the directory names ininteraction_logs/.tasks.json: task records executed by the retained sessions, including prompts, reference-material metadata, expected deliverables, occupational metadata, and grading rubrics.scores.json: automated-grader records referenced by retained sessions. Three retained sessions contain anautograde_score_idand embedded overall score whose detailed score record was already absent from the sourcescores.json.ratings.json: Bayesian skill estimates for agents and human participants. Humanentity_idvalues correspond to participantuser_idvalues; agent entries use agent identifiers. The conservative CollabSkill value ismu - 3 * sigma.
Joining the Files
- Join an interaction-log directory to
sessions.jsonwithsession_id. - Join sessions to participants with
user_id. - Join sessions to task metadata with
task_id. - Join human ratings to participants with
ratings.humans[].entity_id == participants[].user_id. - Join agent ratings to session agents through the corresponding agent identifier.
The participant without a human rating did not contribute a completed rated episode; therefore, 93 study participants correspond to 92 human rating entries.
Loading the Data
The release uses nested JSON and JSONL files rather than a single tabular split. The following example selects the 386 study sessions and handles both interaction-log formats:
import json
from pathlib import Path
root = Path("release")
log_root = root / "interaction_logs"
with (root / "leaderboard_data" / "sessions.json").open() as f:
all_sessions = json.load(f)
study_session_ids = {path.parent.name for path in log_root.glob("*/extracted_log.jsonl")}
study_sessions = [row for row in all_sessions if row["session_id"] in study_session_ids]
for path in sorted(log_root.glob("*/extracted_log.jsonl")):
with path.open() as f:
records = [json.loads(line) for line in f if line.strip()]
if len(records) == 1 and "no_extracted_log_reason" in records[0]:
reason = records[0]["no_extracted_log_reason"]
continue
# Process standard interaction records here.
Limitations and Intended Use
- The participant sample consists of U.S.-based workers recruited through Upwork and is not representative of all workers or occupations.
- Tasks cover 10 O*NET sectors and emphasize open-ended, artifact-producing work; results may not generalize to other settings.
- Interaction logs come from heterogeneous agent interfaces and were normalized into a common extracted schema.
- The dataset is intended for research on human-agent collaboration, interaction analysis, agent evaluation, and AI literacy. It should not be used to make consequential decisions about individual participants.
Licensing Information
This dataset release is licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0). You may share and adapt the material for any purpose, provided that appropriate credit is given.
Citation Information
If you use this dataset, please cite:
@inproceedings{shao2026collabskill,
title = {CollabSkill: Evaluating Human-Agent Collaboration on Real-World Tasks},
author = {Shao, Yijia and Wang, Zora Zhiruo and Ahuja, Neel and Wang, Yicheng and Liu, Bowen and Yang, Diyi},
booktitle = {Third Conference on Language Modeling},
year = {2026},
url = {https://arxiv.org/abs/2606.09833}
}
- Downloads last month
- 261