The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 290, in _generate_tables
pa_table = paj.read_json(
io.BytesIO(batch), read_options=paj.ReadOptions(block_size=block_size)
)
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
raise convert_status(status)
pyarrow.lib.ArrowInvalid: JSON parse error: Column() changed from object to string in row 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 101, in _split_generators
pa_table = next(iter(self._generate_tables(**splits[0].gen_kwargs, allow_full_read=False)))[1]
~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 304, in _generate_tables
batch = json_encode_fields_in_json_lines(original_batch, json_field_paths)
File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 111, in json_encode_fields_in_json_lines
examples = [ujson_loads(line) for line in original_batch.splitlines()]
~~~~~~~~~~~^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 20, in ujson_loads
return pd.io.json.ujson_loads(*args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
ValueError: Expected object or value
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.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.
π TIDES: Longitudinal Bilingual Dataset for Modeling Multi-Party Social Dynamics
- Paper: Coming soon
- Website: Coming soon
- Contact: heechan@kaist.ac.kr,
π TIDES is an in-the-wild, longitudinal, multi-party collaboration dialogue dataset collected by tracking Korean university student teams over the course of a semester. TIDES includes transcripts and chat logs from meetings conducted by participants as they worked on real course projects throughout the semester, along with satisfaction surveys. Rather than simply providing raw dialogue, we offer emergent role, utterance type, and team development annotation layers to capture the development of social dynamics in multi-party collaboration settings.
Speakers are anonymized (PERSON_A, PERSON_B, β¦). The corpus includes seven primarily Korean-speaking teams (Team_1, Team_2, Team_3, Team_6, Team_7, Team_9, and Team_10) and five primarily English-speaking teams (Team_4, Team_5, Team_8, Team_11, and Team_12). All transcripts provide English text (Some participants speak in Korean seldomly!); Korean-source teams additionally include the original utterances in korean_text.
| Scale | Count |
|---|---|
| Teams | 12 (Team_1 β¦ Team_12) |
| Meeting transcript files | 104 |
| Utterance segments | ~75,971 |
| Chat exports | 11 teams (Team_3 has no chat file) |
| Approx. size | ~27 MB |
Some meetings are split across multiple files (
β¦_Pt1.json,β¦_Pt2.json, β¦). Metadata lists meetings by date (88 dated meetings), so the number of JSON files can exceed the number of metadata meeting entries.
Directory layout
TIDES/
βββ README.md
βββ metadata/
β βββ meeting_metadata.json # per-team project blurb, meeting topics, speaker map
β βββ satisfaction_metadata.json # per-meeting satisfaction survey aggregates
β βββ meeting_roles.csv # per-participant role ratings per meeting
βββ Team_N/
βββ TeamN_YYYYMMDD.json # meeting transcript (+ optional "_PtK" suffix)
βββ TeamN_YYYYMMDD_PtK.json
βββ chat/
βββ TeamN_chat_anonymized.{txt,csv,xlsx}
Meeting transcripts (Team_N/*.json)
Each file is a single JSON object:
{
"segments": [ /* ordered utterances */ ]
}
Segment schema
| Field | Type | Required | Description |
|---|---|---|---|
start |
number | yes | Utterance start time (seconds) |
end |
number | yes | Utterance end time (seconds) |
speaker |
string | yes | Anonymized speaker id (PERSON_A, β¦) |
text |
string | yes | Utterance text (English) |
utterance_type |
string | yes | Dialogue-act / interaction label (see below) |
annotation_source |
string | yes | "gemma" (model) or "human" (gold) |
korean_text |
string | no | Original Korean utterance when retained |
qwen_utterance_type |
string | no | Secondary model (Qwen) label |
Coverage notes
annotation_source: mostlygemma(70k);5.7k). Human segments usually omithuman(korean_textandqwen_utterance_type.korean_text: present on a majority of segments, not all.qwen_utterance_type: present on mostgemmasegments; absent on typicalhumansegments.
Example segment
{
"start": 76.56,
"end": 80.3,
"speaker": "PERSON_B",
"text": "It's a bit different from what we had in mind.",
"utterance_type": "Linking Solutions",
"annotation_source": "gemma",
"korean_text": " κ·Όλ° μ ν¬κ° μκ°νλ μ΄λ―Έμ§λ μ’ λ€λ₯΄μΈμ.",
"qwen_utterance_type": "Linking Problems"
}
utterance_type vocabulary
Based on modified version of act4teams-SHORT (KlΓΌnder et al., 2020)
| Label | ~Count |
|---|---|
| Giving Information | 26810 |
| Active listening | 9946 |
| Linking Solutions | 9260 |
| Naming Solutions | 4917 |
| Other / Neutral | 4703 |
| Structuring | 4643 |
| Proactivity | 3912 |
| Naming Problems | 3157 |
| Social / Humor | 2510 |
| Linking Problems | 2233 |
| Cooperation | 1812 |
| Knowledge Transfer | 878 |
| Task/Process Negative | 642 |
| Social Negative | 465 |
| Linking & Connecting | 83 |
Metadata
metadata/meeting_metadata.json
Top-level keys: Team_1 β¦ Team_12.
Team_N:
team_number: int
project: string # short project / context description (may be Korean)
speaker_id_to_pseudonym: { # PERSON_* β English given-name pseudonym
"PERSON_A": "Alex",
...
}
meetings: [
{
date: "YYYY-MM-DD",
main_topics: [string, ...], # participant- or annotator-written topic summaries
participants: ["PERSON_A", ...],
team_development_stage: string # optional; e.g. Forming, Storming, Norming, Performing, Adjourning
# (occasionally a comma-combined value)
},
...
]
Team development stage (Based on Tuckman's stages of group development (1965)): Forming, Storming, Norming, Performing, Adjourning.
metadata/satisfaction_metadata.json
Top-level keys: Team_1 β¦ Team_12.
Team_N:
team_number: int
meetings: [
{
date: "YYYY-MM-DD",
satisfaction: [
{
question: string, # bilingual prompt text
average: number | null,
scores: [number, ...] # may be empty when not collected
},
...
]
},
...
]
metadata/meeting_roles.csv
One row per participant Γ meeting.
| Column | Description |
|---|---|
Team_Number |
Team id (1β12) |
Meeting_Sequence |
Meeting index within the team |
Meeting_Date |
YYYY-MM-DD |
Participant_Name |
PERSON_* id |
Dominance_Average |
Dominance score |
Sociability_Average |
Sociability score |
Task_Orientation_Average |
Task-orientation score |
assigned_role |
Nearest role label (see below) |
role_distance |
Distance to assigned role centroid |
assigned_role values (Based on TRIAD model (Driskell et al., 2017)): Attention Seeker, Coordinator, Critic, Evaluator, Follower, Negative, Power Seeker, Problem Solver, Social, Task Completer, Task Motivator, Team Leader, Teamwork Support.
Team chat (Team_N/chat/)
Asynchronous team messaging exports (KakaoTalk-style), with participant names replaced by English pseudonyms consistent with speaker_id_to_pseudonym where applicable.
| Team | File | Format |
|---|---|---|
| 1, 2, 5, 6, 7, 8, 9 | TeamN_chat_anonymized.txt |
Plain-text chat export |
| 10, 11, 12 | TeamN_chat_anonymized.csv |
CSV |
| 4 | TeamN_chat_anonymized.xlsx |
Excel |
| 3 | β | Missing in this release |
Anonymization & ethics notes
- Meeting speakers use
PERSON_*ids; metadata maps them to English pseudonyms for readability. - Chat logs use the same pseudonym style; residual indirect identifiers may still exist in free textβreview before redistribution if your release policy requires it.
- Survey free-text / topic fields may contain Korean descriptions of course projects.
Citation
Add citation / license / paper link here before publishing to Hugging Face.
- Downloads last month
- 19