Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed because of a cast error
Error code:   DatasetGenerationCastError
Exception:    DatasetGenerationCastError
Message:      An error occurred while generating the dataset

All the data files must have the same columns, but at some point there are 10 new columns ({'a4', 'ts', 'a2', 'qid', 'a0', 'a1', 'vid_name', 'q', 'a3', 'subtitle'}) and 14 missing columns ({'dataset', 'utterance', 'game_id', 'task', 'choices', 'clip_name', 'speaker', 'question', 'context', 'answer', 'utterance_masked', 'player_num', 'video_path', 'id'}).

This happened while the json dataset builder was generating data using

hf://datasets/arkimjh/social-benchmark/json/tvqa_plus_eval.json (at revision 4455bcae4bc1810b3fa4420e2039ce174e2f87fd), [/tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_mpp_original.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_mpp_original.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_pcr_original.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_pcr_original.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_sti_original.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_sti_original.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_mpp_extended.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_mpp_extended.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_pcr_extended.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_pcr_extended.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_sti_extended.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_sti_extended.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/tvqa_plus_eval.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/tvqa_plus_eval.json)]

Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1890, in _prepare_split_single
                  writer.write_table(table)
                File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 760, in write_table
                  pa_table = table_cast(pa_table, self._schema)
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2272, in table_cast
                  return cast_table_to_schema(table, schema)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2218, in cast_table_to_schema
                  raise CastError(
              datasets.table.CastError: Couldn't cast
              qid: int64
              vid_name: string
              ts: list<item: double>
                child 0, item: double
              q: string
              answer_idx: string
              a0: string
              a1: string
              a2: string
              a3: string
              a4: string
              subtitle: string
              to
              {'clip_name': Value('string'), 'video_path': Value('string'), 'dataset': Value('string'), 'game_id': Value('string'), 'speaker': Value('string'), 'player_num': Value('int64'), 'utterance': Value('string'), 'choices': List(Value('string')), 'id': Value('string'), 'task': Value('string'), 'utterance_masked': Value('string'), 'question': Value('string'), 'answer': Value('string'), 'answer_idx': Value('int64'), 'context': List(Value('string'))}
              because column names don't match
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1347, in compute_config_parquet_and_info_response
                  parquet_operations = convert_to_parquet(builder)
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 980, in convert_to_parquet
                  builder.download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 884, in download_and_prepare
                  self._download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 947, in _download_and_prepare
                  self._prepare_split(split_generator, **prepare_split_kwargs)
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1739, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1892, in _prepare_split_single
                  raise DatasetGenerationCastError.from_cast_error(
              datasets.exceptions.DatasetGenerationCastError: An error occurred while generating the dataset
              
              All the data files must have the same columns, but at some point there are 10 new columns ({'a4', 'ts', 'a2', 'qid', 'a0', 'a1', 'vid_name', 'q', 'a3', 'subtitle'}) and 14 missing columns ({'dataset', 'utterance', 'game_id', 'task', 'choices', 'clip_name', 'speaker', 'question', 'context', 'answer', 'utterance_masked', 'player_num', 'video_path', 'id'}).
              
              This happened while the json dataset builder was generating data using
              
              hf://datasets/arkimjh/social-benchmark/json/tvqa_plus_eval.json (at revision 4455bcae4bc1810b3fa4420e2039ce174e2f87fd), [/tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_mpp_original.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_mpp_original.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_pcr_original.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_pcr_original.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_sti_original.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/mmsi_test_sti_original.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_mpp_extended.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_mpp_extended.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_pcr_extended.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_pcr_extended.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_sti_extended.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/online_mmsi_test_sti_extended.json), /tmp/hf-datasets-cache/medium/datasets/39851403759623-config-parquet-and-info-arkimjh-social-benchmark-db30aebf/hub/datasets--arkimjh--social-benchmark/snapshots/4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/tvqa_plus_eval.json (origin=hf://datasets/arkimjh/social-benchmark@4455bcae4bc1810b3fa4420e2039ce174e2f87fd/json/tvqa_plus_eval.json)]
              
              Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)

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.

clip_name
string
video_path
string
dataset
string
game_id
string
speaker
string
player_num
int64
utterance
string
choices
list
id
string
task
string
utterance_masked
string
question
string
answer
string
answer_idx
int64
context
list
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0005
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0005.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P3
5
P3: I cannot wait until P2 opens his eyes and sees me, the werewolf.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0005__MPP__w6
MPP
P3: I cannot wait until [MASK] opens his eyes and sees me, the werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "Audio: Everyone close your eyes.", "P3: Is this the maestro?", "Audio: Werewolves, wake up.", "P3: It was spaghetti. There we go.", "Audio: And look for other werewolves. If there is only one werewolf, you may look at a card in the center.", "P3: I cannot wait until [MASK] opens his eyes and sees me, the...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0011
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0011.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P2
5
P2: Until the first moment when P3 sees I did something that I didn't understand right at him. Like, "What the fuck are you doing?"
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0011__MPP__w7
MPP
P2: Until the first moment when [MASK] sees I did something that I didn't understand right at him. Like, "What the fuck are you doing?"
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "Audio: Werewolves, close your eyes.", "P0: That will bring the werewolves together and you'll be the best pair of werewolves in the world.", "Audio: You may look at another player's card. Or two of the...[crosstalk 00:00:26]", "P2: That is a possibility actually.", "P0: Oh, a hundred percent. You guys goin...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0017
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0017.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: All right. I'm just going to get this out of the way right now. I was the troublemaker and I switched P3 with somebody and this time it is the truth.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0017__MPP__w23
MPP
P0: All right. I'm just going to get this out of the way right now. I was the troublemaker and I switched [MASK] with somebody and this time it is the truth.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "Audio: You may exchange your card... [crosstalk 00:00:37]", "P0: We're at robber. Now, just so everybody knows.", "Audio: And then view your new card. Robber. Close your eyes. Troublemaker. Wake up. You may exchange cards between two other players.", "P2: Whoever's the seer should just always look at eyes. Y...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0018
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0018.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P2
5
P2: You pointed at me. Did you switch me with P3?
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0018__MPP__w11
MPP
P2: You pointed at me. Did you switch me with [MASK]?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: We're at robber. Now, just so everybody knows.", "Audio: And then view your new card. Robber. Close your eyes. Troublemaker. Wake up. You may exchange cards between two other players.", "P2: Whoever's the seer should just always look at eyes. You just zoom and \"no\".", "Audio: Wake up and look at your c...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0019
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0019.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: No, P3. I switched P3 with somebody.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0019__MPP__w3
MPP
P0: No, [MASK]. I switched P3 with somebody.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "Audio: And then view your new card. Robber. Close your eyes. Troublemaker. Wake up. You may exchange cards between two other players.", "P2: Whoever's the seer should just always look at eyes. You just zoom and \"no\".", "Audio: Wake up and look at your card. Oh, Insomniac. Close your eyes. Everyone. Keep your...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0019
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0019.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: No, P3. I switched P3 with somebody.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0019__MPP__w6
MPP
P0: No, P3. I switched [MASK] with somebody.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "Audio: And then view your new card. Robber. Close your eyes. Troublemaker. Wake up. You may exchange cards between two other players.", "P2: Whoever's the seer should just always look at eyes. You just zoom and \"no\".", "Audio: Wake up and look at your card. Oh, Insomniac. Close your eyes. Everyone. Keep your...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0021
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0021.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: Cause you're saying you're a seer. P4 is a robber.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0021__MPP__w8
MPP
P0: Cause you're saying you're a seer. [MASK] is a robber.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "Audio: Wake up and look at your card. Oh, Insomniac. Close your eyes. Everyone. Keep your eyes closed and reach out and move your card around slightly. Everyone wake up.", "P0: All right. I'm just going to get this out of the way right now. I was the troublemaker and I switched P3 with somebody and this time it ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0025
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0025.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: Sure. P1, you were saying you're the seer, P4 is the robber. P3 says villager and he is not going to say anything else for the rest of this.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0025__MPP__w3
MPP
P0: Sure. [MASK], you were saying you're the seer, P4 is the robber. P3 says villager and he is not going to say anything else for the rest of this.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P2: Okay, you went like that, but just...", "P0: Cause you're saying you're a seer. P4 is a robber.", "P2: All right, I was the Insomniac.", "P0: Did you wake up as the Insomniac?", "P2: I will tell you in a second.", "P0: Sure. [MASK], you were saying you're the seer, P4 is the robber. P3 says villager ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0025
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0025.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: Sure. P1, you were saying you're the seer, P4 is the robber. P3 says villager and he is not going to say anything else for the rest of this.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0025__MPP__w10
MPP
P0: Sure. P1, you were saying you're the seer, [MASK] is the robber. P3 says villager and he is not going to say anything else for the rest of this.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "P2: Okay, you went like that, but just...", "P0: Cause you're saying you're a seer. P4 is a robber.", "P2: All right, I was the Insomniac.", "P0: Did you wake up as the Insomniac?", "P2: I will tell you in a second.", "P0: Sure. P1, you were saying you're the seer, [MASK] is the robber. P3 says villager ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0025
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0025.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: Sure. P1, you were saying you're the seer, P4 is the robber. P3 says villager and he is not going to say anything else for the rest of this.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0025__MPP__w14
MPP
P0: Sure. P1, you were saying you're the seer, P4 is the robber. [MASK] says villager and he is not going to say anything else for the rest of this.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P2: Okay, you went like that, but just...", "P0: Cause you're saying you're a seer. P4 is a robber.", "P2: All right, I was the Insomniac.", "P0: Did you wake up as the Insomniac?", "P2: I will tell you in a second.", "P0: Sure. P1, you were saying you're the seer, P4 is the robber. [MASK] says villager ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0028
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0028.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: And I switched P3 and P1 in attempt to recreate the drama we had last round, but differently.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0028__MPP__w5
MPP
P0: And I switched [MASK] and P1 in attempt to recreate the drama we had last round, but differently.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: Did you wake up as the Insomniac?", "P2: I will tell you in a second.", "P0: Sure. P1, you were saying you're the seer, P4 is the robber. P3 says villager and he is not going to say anything else for the rest of this.", "P1: I will prove I'm the seer. This one was villager. This one's a werewolf.", "P4...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0028
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0028.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: And I switched P3 and P1 in attempt to recreate the drama we had last round, but differently.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0028__MPP__w7
MPP
P0: And I switched P3 and [MASK] in attempt to recreate the drama we had last round, but differently.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P0: Did you wake up as the Insomniac?", "P2: I will tell you in a second.", "P0: Sure. P1, you were saying you're the seer, P4 is the robber. P3 says villager and he is not going to say anything else for the rest of this.", "P1: I will prove I'm the seer. This one was villager. This one's a werewolf.", "P4...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0032
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0032.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: So do we kill P3 cause he hasn't said anything else?
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0032__MPP__w6
MPP
P0: So do we kill [MASK] cause he hasn't said anything else?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P4: I can verify that she was the seer because I stole from her.", "P0: And I switched P3 and P1 in attempt to recreate the drama we had last round, but differently.", "P1: Wait, so I'm a villager now?", "P0: Yes. Yeah. And yeah, you're the robber.", "P4: All right.", "P0: So do we kill [MASK] cause he h...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0033
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0033.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P4
5
P4: What about P2?
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0033__MPP__w4
MPP
P4: What about [MASK]?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P0: And I switched P3 and P1 in attempt to recreate the drama we had last round, but differently.", "P1: Wait, so I'm a villager now?", "P0: Yes. Yeah. And yeah, you're the robber.", "P4: All right.", "P0: So do we kill P3 cause he hasn't said anything else?", "P4: What about [MASK]?", "P2: This is lik...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0039
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0039.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: We're all just working together. P1's trying to suss P3 out.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0039__MPP__w7
MPP
P0: We're all just working together. [MASK]'s trying to suss P3 out.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P2: This is like a little suspicious to me that this is all just falling into place.", "P0: I believe it. You said Insomniac like right away. Did you wake up as the Insomniac?", "P2: I woke up as the Insomniac.", "P0: I believe this a hundred percent that I don't even want to take time overthinking it. I'm r...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0039
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0039.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: We're all just working together. P1's trying to suss P3 out.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0039__MPP__w11
MPP
P0: We're all just working together. P1's trying to suss [MASK] out.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P2: This is like a little suspicious to me that this is all just falling into place.", "P0: I believe it. You said Insomniac like right away. Did you wake up as the Insomniac?", "P2: I woke up as the Insomniac.", "P0: I believe this a hundred percent that I don't even want to take time overthinking it. I'm r...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0043
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0043.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: P4 could.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0043__MPP__w2
MPP
P0: [MASK] could.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "P4: Vote to the left? There is no werewolf?", "P0: We're all just working together. P1's trying to suss P3 out.", "P4: Are you a werewolf?", "P0: He's a robber now.", "P2: Not to pick on you, but to pick on you. Sorry. Was anyone able to confirm your story or just that...", "P0: [MASK] could.", "P4: I ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0051
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0051.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P4
5
P4: Could P0 be a werewolf?
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0051__MPP__w3
MPP
P4: Could [MASK] be a werewolf?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P0: These two. Yeah.", "P1: Yeah.", "P0: So we're a nice, happy town after that last yelling around. So I think we all vote to the left.", "P4: Does anyone who doesn't want to go to a vote at this point?", "P2: I think I'm caught up.", "P4: Could [MASK] be a werewolf?", "P0: I could.", "P2: Probably....
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0058
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0058.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: I said I'm the troublemaker and I switched P3 with somebody.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0058__MPP__w10
MPP
P0: I said I'm the troublemaker and I switched [MASK] with somebody.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P2: Probably.", "P0: But I'm not.", "P4: When did you claim troublemaker? Before anyone else?", "P0: It was first, before anyone else.", "P4: Fascinating.", "P0: I said I'm the troublemaker and I switched [MASK] with somebody.", "P2: That's true, yeah.", "P0: And P3 then said villager. Then P2 said I...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0060
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0060.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: And P3 then said villager. Then P2 said Insomniac. You said seer. You said seer sometime in that. And then you were the last to say robber, but you're confirming a story. So we kill P4.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0060__MPP__w3
MPP
P0: And [MASK] then said villager. Then P2 said Insomniac. You said seer. You said seer sometime in that. And then you were the last to say robber, but you're confirming a story. So we kill P4.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P4: When did you claim troublemaker? Before anyone else?", "P0: It was first, before anyone else.", "P4: Fascinating.", "P0: I said I'm the troublemaker and I switched P3 with somebody.", "P2: That's true, yeah.", "P0: And [MASK] then said villager. Then P2 said Insomniac. You said seer. You said seer so...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0060
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0060.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: And P3 then said villager. Then P2 said Insomniac. You said seer. You said seer sometime in that. And then you were the last to say robber, but you're confirming a story. So we kill P4.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0060__MPP__w8
MPP
P0: And P3 then said villager. Then [MASK] said Insomniac. You said seer. You said seer sometime in that. And then you were the last to say robber, but you're confirming a story. So we kill P4.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P4: When did you claim troublemaker? Before anyone else?", "P0: It was first, before anyone else.", "P4: Fascinating.", "P0: I said I'm the troublemaker and I switched P3 with somebody.", "P2: That's true, yeah.", "P0: And P3 then said villager. Then [MASK] said Insomniac. You said seer. You said seer so...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0060
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0060.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: And P3 then said villager. Then P2 said Insomniac. You said seer. You said seer sometime in that. And then you were the last to say robber, but you're confirming a story. So we kill P4.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0060__MPP__w37
MPP
P0: And P3 then said villager. Then P2 said Insomniac. You said seer. You said seer sometime in that. And then you were the last to say robber, but you're confirming a story. So we kill [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "P4: When did you claim troublemaker? Before anyone else?", "P0: It was first, before anyone else.", "P4: Fascinating.", "P0: I said I'm the troublemaker and I switched P3 with somebody.", "P2: That's true, yeah.", "P0: And P3 then said villager. Then P2 said Insomniac. You said seer. You said seer someti...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0062
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0062.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: Rip P4.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0062__MPP__w3
MPP
P0: Rip [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "P4: Fascinating.", "P0: I said I'm the troublemaker and I switched P3 with somebody.", "P2: That's true, yeah.", "P0: And P3 then said villager. Then P2 said Insomniac. You said seer. You said seer sometime in that. And then you were the last to say robber, but you're confirming a story. So we kill P4.", "...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0071
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0071.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: I'm just, honestly, now I'm worried about P3. Cause I feel like he's just silently...
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0071__MPP__w9
MPP
P0: I'm just, honestly, now I'm worried about [MASK]. Cause I feel like he's just silently...
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P2: Yeah.", "P0: And you saw villager and werewolf when you were seer, right?", "P1: Yeah. Villager and werewolf.", "P0: All right.", "P4: I'd be ready to vote if you guys are.", "P0: I'm just, honestly, now I'm worried about [MASK]. Cause I feel like he's just silently...", "P4: He's just so silent.",...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0073
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0073.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3
P0
5
P0: He's only silent. No, because he would want say that he isn't the werewolf now because P1 has his card. All right. I'm good to vote to the left. And I think if someone's a werewolf here, you won because we were all a happy, loving town.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game3_utt0073__MPP__w18
MPP
P0: He's only silent. No, because he would want say that he isn't the werewolf now because [MASK] has his card. All right. I'm good to vote to the left. And I think if someone's a werewolf here, you won because we were all a happy, loving town.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P1: Yeah. Villager and werewolf.", "P0: All right.", "P4: I'd be ready to vote if you guys are.", "P0: I'm just, honestly, now I'm worried about P3. Cause I feel like he's just silently...", "P4: He's just so silent.", "P0: He's only silent. No, because he would want say that he isn't the werewolf now be...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0003
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0003.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: [inaudible 00:01:20] no, we're going to be, crazy eights is so yesterday, we're playing crazy nines now. P3, he was the seer. He found the tanner and the Insomniac in the center. That's bullshit because I'm the Insomniac.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0003__MPP__w19
MPP
P0: [inaudible 00:01:20] no, we're going to be, crazy eights is so yesterday, we're playing crazy nines now. [MASK], he was the seer. He found the tanner and the Insomniac in the center. That's bullshit because I'm the Insomniac.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "Audio: Everyone, close your eyes. Werewolves, wake up and look for other werewolves. If there is only one werewolf, you may look at a card from the center. Werewolves, close your eyes. Seer, wake up. You may look at another player's card or two of the center cards.", "P0: I know that the timing of this never cha...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0019
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0019.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: What this kind of says to me is, P3 knows he's the tanner. This is a possibility. He knows he's the tanner so he's going to say that that's one of the cards in there. Because then the tanner's not going to lie about being or not if a whole, okay.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0019__MPP__w10
MPP
P2: What this kind of says to me is, [MASK] knows he's the tanner. This is a possibility. He knows he's the tanner so he's going to say that that's one of the cards in there. Because then the tanner's not going to lie about being or not if a whole, okay.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: Nice. Got there.", "P4: This is a dangerous round.", "P0: I can confirm you did not switch me.", "P2: I was like, how? I understood, because you're saying you're Insomniac.", "P4: Hey, interesting, if he was lying then he wouldn't have been able to confirm that without risk. But he said it confidently....
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0020
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0020.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P4
5
P4: What the fuck is P1?
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0020__MPP__w6
MPP
P4: What the fuck is [MASK]?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P4: This is a dangerous round.", "P0: I can confirm you did not switch me.", "P2: I was like, how? I understood, because you're saying you're Insomniac.", "P4: Hey, interesting, if he was lying then he wouldn't have been able to confirm that without risk. But he said it confidently.", "P2: What this kind o...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0022
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0022.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P4
5
P4: Yeah, what's P1? P1, what are you? P1's a werewolf.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0022__MPP__w4
MPP
P4: Yeah, what's [MASK]? P1, what are you? P1's a werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P2: I was like, how? I understood, because you're saying you're Insomniac.", "P4: Hey, interesting, if he was lying then he wouldn't have been able to confirm that without risk. But he said it confidently.", "P2: What this kind of says to me is, P3 knows he's the tanner. This is a possibility. He knows he's th...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0022
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0022.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P4
5
P4: Yeah, what's P1? P1, what are you? P1's a werewolf.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0022__MPP__w5
MPP
P4: Yeah, what's P1? [MASK], what are you? P1's a werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P2: I was like, how? I understood, because you're saying you're Insomniac.", "P4: Hey, interesting, if he was lying then he wouldn't have been able to confirm that without risk. But he said it confidently.", "P2: What this kind of says to me is, P3 knows he's the tanner. This is a possibility. He knows he's th...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0022
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0022.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P4
5
P4: Yeah, what's P1? P1, what are you? P1's a werewolf.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0022__MPP__w9
MPP
P4: Yeah, what's P1? P1, what are you? [MASK]'s a werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P2: I was like, how? I understood, because you're saying you're Insomniac.", "P4: Hey, interesting, if he was lying then he wouldn't have been able to confirm that without risk. But he said it confidently.", "P2: What this kind of says to me is, P3 knows he's the tanner. This is a possibility. He knows he's th...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0024
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0024.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P3
5
P3: I think P1 might be a werewolf.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0024__MPP__w4
MPP
P3: I think [MASK] might be a werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P2: What this kind of says to me is, P3 knows he's the tanner. This is a possibility. He knows he's the tanner so he's going to say that that's one of the cards in there. Because then the tanner's not going to lie about being or not if a whole, okay.", "P4: What the fuck is P1?", "P3: What am I?", "P4: Yeah,...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0025
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0025.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: P1 might be werewolf.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0025__MPP__w2
MPP
P0: [MASK] might be werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P4: What the fuck is P1?", "P3: What am I?", "P4: Yeah, what's P1? P1, what are you? P1's a werewolf.", "P2: I'm confused.", "P3: I think P1 might be a werewolf.", "P0: [MASK] might be werewolf.", "P4: I mean that's the way things are looking. But also there is this conflict we cannot ignore between st...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0027
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0027.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: I think P3 might be the tanner.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0027__MPP__w4
MPP
P0: I think [MASK] might be the tanner.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P4: Yeah, what's P1? P1, what are you? P1's a werewolf.", "P2: I'm confused.", "P3: I think P1 might be a werewolf.", "P0: P1 might be werewolf.", "P4: I mean that's the way things are looking. But also there is this conflict we cannot ignore between stories.", "P0: I think [MASK] might be the tanner.", ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0028
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0028.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P1
5
P1: I think P0's also a werewolf.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0028__MPP__w4
MPP
P1: I think [MASK]'s also a werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P2: I'm confused.", "P3: I think P1 might be a werewolf.", "P0: P1 might be werewolf.", "P4: I mean that's the way things are looking. But also there is this conflict we cannot ignore between stories.", "P0: I think P3 might be the tanner.", "P1: I think [MASK]'s also a werewolf.", "P0: I am the Insomn...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0032
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0032.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: Which is really interesting because P1 may be one of the people that I switched.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0032__MPP__w7
MPP
P2: Which is really interesting because [MASK] may be one of the people that I switched.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P0: I think P3 might be the tanner.", "P1: I think P0's also a werewolf.", "P0: I am the Insomniac and I woke up as the Insomniac.", "P2: You say, also.", "P4: Also,...", "P2: Which is really interesting because [MASK] may be one of the people that I switched.", "P0: You did not switch her with me caus...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0034
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0034.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: That makes me believe P0 a bit too because actually I didn't switch P0 with her.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0034__MPP__w6
MPP
P2: That makes me believe [MASK] a bit too because actually I didn't switch P0 with her.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P0: I am the Insomniac and I woke up as the Insomniac.", "P2: You say, also.", "P4: Also,...", "P2: Which is really interesting because P1 may be one of the people that I switched.", "P0: You did not switch her with me cause I woke up as the Insomniac.", "P2: That makes me believe [MASK] a bit too becaus...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0034
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0034.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: That makes me believe P0 a bit too because actually I didn't switch P0 with her.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0034__MPP__w15
MPP
P2: That makes me believe P0 a bit too because actually I didn't switch [MASK] with her.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P0: I am the Insomniac and I woke up as the Insomniac.", "P2: You say, also.", "P4: Also,...", "P2: Which is really interesting because P1 may be one of the people that I switched.", "P0: You did not switch her with me cause I woke up as the Insomniac.", "P2: That makes me believe P0 a bit too because ac...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0039
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0039.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: I think P3 is the tanner.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0039__MPP__w4
MPP
P0: I think [MASK] is the tanner.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P2: That makes me believe P0 a bit too because actually I didn't switch P0 with her.", "P0: How does it feel to be lying about being the villager right now, by the way, [inaudible 00:03:42] steal that information.", "P4: Feels good.", "P0: I was the Insomniac. This is a problem. He's lying.", "P3: No, I'm ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0040
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0040.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: I think P3 is the tanner as well. He did that right away because he chose the tanner as one of the cards in the center.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0040__MPP__w4
MPP
P2: I think [MASK] is the tanner as well. He did that right away because he chose the tanner as one of the cards in the center.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: How does it feel to be lying about being the villager right now, by the way, [inaudible 00:03:42] steal that information.", "P4: Feels good.", "P0: I was the Insomniac. This is a problem. He's lying.", "P3: No, I'm not.", "P0: I think P3 is the tanner.", "P2: I think [MASK] is the tanner as well. He ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0041
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0041.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: I think P3, this is a good gambit to be as the tanner. Not as much as the werewolf because like you said, you're lying about three things.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0041__MPP__w4
MPP
P0: I think [MASK], this is a good gambit to be as the tanner. Not as much as the werewolf because like you said, you're lying about three things.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P4: Feels good.", "P0: I was the Insomniac. This is a problem. He's lying.", "P3: No, I'm not.", "P0: I think P3 is the tanner.", "P2: I think P3 is the tanner as well. He did that right away because he chose the tanner as one of the cards in the center.", "P0: I think [MASK], this is a good gambit to be...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0042
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0042.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: But if he is the werewolf, it totally puts us off the track of P3.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0042__MPP__w16
MPP
P0: But if he is the werewolf, it totally puts us off the track of [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: I was the Insomniac. This is a problem. He's lying.", "P3: No, I'm not.", "P0: I think P3 is the tanner.", "P2: I think P3 is the tanner as well. He did that right away because he chose the tanner as one of the cards in the center.", "P0: I think P3, this is a good gambit to be as the tanner. Not as mu...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0044
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0044.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: Switch P3...
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0044__MPP__w3
MPP
P0: Switch [MASK]...
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: I think P3 is the tanner.", "P2: I think P3 is the tanner as well. He did that right away because he chose the tanner as one of the cards in the center.", "P0: I think P3, this is a good gambit to be as the tanner. Not as much as the werewolf because like you said, you're lying about three things.", "P0:...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0046
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0046.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: Switch P3.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0046__MPP__w3
MPP
P0: Switch [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: I think P3, this is a good gambit to be as the tanner. Not as much as the werewolf because like you said, you're lying about three things.", "P0: But if he is the werewolf, it totally puts us off the track of P3.", "P2: Here's the awkward part that comes into play here.", "P0: Switch P3...", "P2: I did...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0047
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0047.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: I didn't switch P3.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0047__MPP__w5
MPP
P2: I didn't switch [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: But if he is the werewolf, it totally puts us off the track of P3.", "P2: Here's the awkward part that comes into play here.", "P0: Switch P3...", "P2: I didn't...", "P0: Switch P3.", "P2: I didn't switch [MASK].", "P0: So you switched P1 and P4.", "P2: I switched Lauren and P4.", "P4: Dang.", ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0048
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0048.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: So you switched P1 and P4.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0048__MPP__w5
MPP
P0: So you switched [MASK] and P4.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P2: Here's the awkward part that comes into play here.", "P0: Switch P3...", "P2: I didn't...", "P0: Switch P3.", "P2: I didn't switch P3.", "P0: So you switched [MASK] and P4.", "P2: I switched Lauren and P4.", "P4: Dang.", "P2: Were you a werewolf?", "P1: I was a werewolf. That means you are a ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0048
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0048.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: So you switched P1 and P4.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0048__MPP__w7
MPP
P0: So you switched P1 and [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "P2: Here's the awkward part that comes into play here.", "P0: Switch P3...", "P2: I didn't...", "P0: Switch P3.", "P2: I didn't switch P3.", "P0: So you switched P1 and [MASK].", "P2: I switched Lauren and P4.", "P4: Dang.", "P2: Were you a werewolf?", "P1: I was a werewolf. That means you are a ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0049
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0049.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: I switched Lauren and P4.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0049__MPP__w6
MPP
P2: I switched Lauren and [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "P0: Switch P3...", "P2: I didn't...", "P0: Switch P3.", "P2: I didn't switch P3.", "P0: So you switched P1 and P4.", "P2: I switched Lauren and [MASK].", "P4: Dang.", "P2: Were you a werewolf?", "P1: I was a werewolf. That means you are a werewolf now.", "P4: Please tell me you're trapping her.",...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0056
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0056.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: I think we got to kill P4.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0056__MPP__w8
MPP
P0: I think we got to kill [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "P2: Were you a werewolf?", "P1: I was a werewolf. That means you are a werewolf now.", "P4: Please tell me you're trapping her.", "P2: I'm not.", "P4: Please save my life.", "P0: I think we got to kill [MASK].", "P4: I mean I have no defense. I was a villager.", "P0: Suddenly. Someone made some troub...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0061
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0061.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: I think we got to kill P4.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0061__MPP__w8
MPP
P0: I think we got to kill [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "P0: I think we got to kill P4.", "P4: I mean I have no defense. I was a villager.", "P0: Suddenly. Someone made some trouble and I'm a werewolf.", "P4: I've grown some fur.", "P2: Brown bumper.", "P0: I think we got to kill [MASK].", "P4: I kind of agree.", "P4: But what the fuck.", "P2: What the f...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0064
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0064.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: What the fuck is P3 going to do If we decide to kill P4?
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0064__MPP__w6
MPP
P2: What the fuck is [MASK] going to do If we decide to kill P4?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P4: I've grown some fur.", "P2: Brown bumper.", "P0: I think we got to kill P4.", "P4: I kind of agree.", "P4: But what the fuck.", "P2: What the fuck is [MASK] going to do If we decide to kill P4?", "P0: He's going to vote for me.", "P2: Okay. But he can't. Okay. As the tanner, he can't screw up the...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0064
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0064.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: What the fuck is P3 going to do If we decide to kill P4?
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0064__MPP__w15
MPP
P2: What the fuck is P3 going to do If we decide to kill [MASK]?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P4
4
[ "P4: I've grown some fur.", "P2: Brown bumper.", "P0: I think we got to kill P4.", "P4: I kind of agree.", "P4: But what the fuck.", "P2: What the fuck is P3 going to do If we decide to kill [MASK]?", "P0: He's going to vote for me.", "P2: Okay. But he can't. Okay. As the tanner, he can't screw up the...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0077
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0077.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P3
5
P3: I forgot the first card I looked at because I was like, oh the tanner, he's the funny guy. I saw brown hair, could have been the robber, no one claimed him. So P0's story might very well check out, but I'm sticking to my guns and....
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0077__MPP__w35
MPP
P3: I forgot the first card I looked at because I was like, oh the tanner, he's the funny guy. I saw brown hair, could have been the robber, no one claimed him. So [MASK]'s story might very well check out, but I'm sticking to my guns and....
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P3: Well here's the thing, again because, okay, so I was a seer.", "Audio: One minute.", "P3: And I'm terrible at being the seer because last time I had forgot the first card I looked at.", "P0: You did.", "P3: For the second card.", "P3: I forgot the first card I looked at because I was like, oh the tan...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0079
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0079.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P0
5
P0: Because that's what P3 thinks I am.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0079__MPP__w5
MPP
P0: Because that's what [MASK] thinks I am.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P3: And I'm terrible at being the seer because last time I had forgot the first card I looked at.", "P0: You did.", "P3: For the second card.", "P3: I forgot the first card I looked at because I was like, oh the tanner, he's the funny guy. I saw brown hair, could have been the robber, no one claimed him. So ...
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0080
MMSI/original_video/Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0080.mp4
youtube
Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5
P2
5
P2: Okay, because I feel pretty good about what P0 said because we sort of verified each other's stories based on trust.
[ "P0", "P1", "P2", "P3", "P4" ]
youtube__Flashback##ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#9_Game5_utt0080__MPP__w10
MPP
P2: Okay, because I feel pretty good about what [MASK] said because we sort of verified each other's stories based on trust.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P3: And I'm terrible at being the seer because last time I had forgot the first card I looked at.", "P0: You did.", "P3: For the second card.", "P3: I forgot the first card I looked at because I was like, oh the tanner, he's the funny guy. I saw brown hair, could have been the robber, no one claimed him. So ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0006
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0006.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P2
4
P2: Fucking touch me P3.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0006__MPP__w5
MPP
P2: Fucking touch me [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "Audio: Everyone, close your eyes. Werewolves, wake up and look for other werewolves. If there is only one werewolf, you may look at a card from the center.", "P0: I love this one, Ryan Mafia.", "Audio: Werewolves, close your eyes. Seer, wake up.", "P1: It's like Mafia Sandoval.", "Audio: You may look at an...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0021
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0021.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P2
4
P2: Fucking gut. Prove me wrong P3.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0021__MPP__w7
MPP
P2: Fucking gut. Prove me wrong [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: You can see your eyes without any signal? Good to know. Might just want us to wave with him.", "P2: I'm willing to bet that there's probably two werewolves. This is how I see this playing out.", "P3: So, that is just pure gut.", "P2: Yeah.", "P3: Fucking gut?", "P2: Fucking gut. Prove me wrong [MASK]...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0025
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0025.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P3
4
P3: P3's lying.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0025__MPP__w2
MPP
P3: [MASK]'s lying.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P3: Fucking gut?", "P2: Fucking gut. Prove me wrong P3.", "P3: I have no information because I was a villager.", "P0: We have a villager talking.", "P1: I was a villager....", "P3: [MASK]'s lying.", "P1: I was a villager when I started but maybe someone swapped it since...", "P3: You were a villager ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0035
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0035.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: I think it's P2.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0035__MPP__w5
MPP
P1: I think it's [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P2: Yeah.", "P0: I got a...", "P3: So, I know in my head that one of you are lying.", "P0: I...", "P3: So, I know for a fact that there's a werewolf here.", "P1: I think it's [MASK].", "P2: No, it's P1.", "P1: Unless someone switched it again. And like I'm like a werewolf.", "P0: I'm not going to p...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0036
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0036.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P2
4
P2: No, it's P1.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0036__MPP__w4
MPP
P2: No, it's [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P0: I got a...", "P3: So, I know in my head that one of you are lying.", "P0: I...", "P3: So, I know for a fact that there's a werewolf here.", "P1: I think it's P2.", "P2: No, it's [MASK].", "P1: Unless someone switched it again. And like I'm like a werewolf.", "P0: I'm not going to pull... I'm not ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0038
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0038.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P0
4
P0: I'm not going to pull... I'm not going to pull P3. I was the robber, and I switched with one of you guys.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0038__MPP__w12
MPP
P0: I'm not going to pull... I'm not going to pull [MASK]. I was the robber, and I switched with one of you guys.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P0: I...", "P3: So, I know for a fact that there's a werewolf here.", "P1: I think it's P2.", "P2: No, it's P1.", "P1: Unless someone switched it again. And like I'm like a werewolf.", "P0: I'm not going to pull... I'm not going to pull [MASK]. I was the robber, and I switched with one of you guys.", "...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0052
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0052.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P2
4
P2: P0's...
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0052__MPP__w2
MPP
P2: [MASK]'s...
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P0: It's cool. We'll play... Well yeah, we'll play some other character cards after this round.", "P3: He knows what he... So you're a villager, I think. I'm a villager... No wait.", "P1: No, I would start a villager.", "P0: Let's take this.", "P3: One of them is a robber and one of them...", "P2: [MASK]...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0053
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0053.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P3
4
P3: The one that P0 did not switch with is the werewolf.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0053__MPP__w5
MPP
P3: The one that [MASK] did not switch with is the werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P3: He knows what he... So you're a villager, I think. I'm a villager... No wait.", "P1: No, I would start a villager.", "P0: Let's take this.", "P3: One of them is a robber and one of them...", "P2: P0's...", "P3: The one that [MASK] did not switch with is the werewolf.", "P2: Well, last time P0 was l...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0054
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0054.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P2
4
P2: Well, last time P0 was like 'I'm this', he just absolutely was not.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0054__MPP__w5
MPP
P2: Well, last time [MASK] was like 'I'm this', he just absolutely was not.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P1: No, I would start a villager.", "P0: Let's take this.", "P3: One of them is a robber and one of them...", "P2: P0's...", "P3: The one that P0 did not switch with is the werewolf.", "P2: Well, last time [MASK] was like 'I'm this', he just absolutely was not.", "P1: Then it would've...", "P0: Past ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0057
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0057.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: P0, if P2 started the werewolf and I started the villager, and.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0057__MPP__w2
MPP
P1: [MASK], if P2 started the werewolf and I started the villager, and.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P2: P0's...", "P3: The one that P0 did not switch with is the werewolf.", "P2: Well, last time P0 was like 'I'm this', he just absolutely was not.", "P1: Then it would've...", "P0: Past games are forgotten. As is the rule.", "P1: [MASK], if P2 started the werewolf and I started the villager, and.", "P2...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0057
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0057.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: P0, if P2 started the werewolf and I started the villager, and.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0057__MPP__w4
MPP
P1: P0, if [MASK] started the werewolf and I started the villager, and.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P2: P0's...", "P3: The one that P0 did not switch with is the werewolf.", "P2: Well, last time P0 was like 'I'm this', he just absolutely was not.", "P1: Then it would've...", "P0: Past games are forgotten. As is the rule.", "P1: P0, if [MASK] started the werewolf and I started the villager, and.", "P2...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0059
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0059.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: P0 switched with P2, then P0 might be the werewolf.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0059__MPP__w2
MPP
P1: [MASK] switched with P2, then P0 might be the werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P2: Well, last time P0 was like 'I'm this', he just absolutely was not.", "P1: Then it would've...", "P0: Past games are forgotten. As is the rule.", "P1: P0, if P2 started the werewolf and I started the villager, and.", "P2: But your tactics.", "P1: [MASK] switched with P2, then P0 might be the werewolf...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0059
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0059.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: P0 switched with P2, then P0 might be the werewolf.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0059__MPP__w5
MPP
P1: P0 switched with [MASK], then P0 might be the werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P2: Well, last time P0 was like 'I'm this', he just absolutely was not.", "P1: Then it would've...", "P0: Past games are forgotten. As is the rule.", "P1: P0, if P2 started the werewolf and I started the villager, and.", "P2: But your tactics.", "P1: P0 switched with [MASK], then P0 might be the werewolf...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0059
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0059.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: P0 switched with P2, then P0 might be the werewolf.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0059__MPP__w7
MPP
P1: P0 switched with P2, then [MASK] might be the werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P2: Well, last time P0 was like 'I'm this', he just absolutely was not.", "P1: Then it would've...", "P0: Past games are forgotten. As is the rule.", "P1: P0, if P2 started the werewolf and I started the villager, and.", "P2: But your tactics.", "P1: P0 switched with P2, then [MASK] might be the werewolf...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0060
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0060.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P3
4
P3: He might be, but he said he will reveal who he switched with as long as there's not a troublemaker here. So, I think P0's confident with what he has. I think that what happened was he switched with the villager, whoever that was.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0060__MPP__w26
MPP
P3: He might be, but he said he will reveal who he switched with as long as there's not a troublemaker here. So, I think [MASK]'s confident with what he has. I think that what happened was he switched with the villager, whoever that was.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P1: Then it would've...", "P0: Past games are forgotten. As is the rule.", "P1: P0, if P2 started the werewolf and I started the villager, and.", "P2: But your tactics.", "P1: P0 switched with P2, then P0 might be the werewolf.", "P3: He might be, but he said he will reveal who he switched with as long a...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0063
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0063.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P2
4
P2: P3's throwing a lot of heat out and he's...
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0063__MPP__w2
MPP
P2: [MASK]'s throwing a lot of heat out and he's...
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P2: But your tactics.", "P1: P0 switched with P2, then P0 might be the werewolf.", "P3: He might be, but he said he will reveal who he switched with as long as there's not a troublemaker here. So, I think P0's confident with what he has. I think that what happened was he switched with the villager, whoever tha...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0064
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0064.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P3
4
P3: And P0 has the answer. Whichever one P0 didn't switch with is the werewolf.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0064__MPP__w3
MPP
P3: And [MASK] has the answer. Whichever one P0 didn't switch with is the werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P1: P0 switched with P2, then P0 might be the werewolf.", "P3: He might be, but he said he will reveal who he switched with as long as there's not a troublemaker here. So, I think P0's confident with what he has. I think that what happened was he switched with the villager, whoever that was.", "P1: Yeah.", "...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0064
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0064.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P3
4
P3: And P0 has the answer. Whichever one P0 didn't switch with is the werewolf.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0064__MPP__w9
MPP
P3: And P0 has the answer. Whichever one [MASK] didn't switch with is the werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P1: P0 switched with P2, then P0 might be the werewolf.", "P3: He might be, but he said he will reveal who he switched with as long as there's not a troublemaker here. So, I think P0's confident with what he has. I think that what happened was he switched with the villager, whoever that was.", "P1: Yeah.", "...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0066
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0066.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P3
4
P3: How come P0 didn't switch with me?
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0066__MPP__w4
MPP
P3: How come [MASK] didn't switch with me?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P1: Yeah.", "P3: And now he wants to make sure there's not a troublemaker so that he knows he truly is on the good side at this point. The question is, which one of you f*ckers was lying at the beginning?", "P2: P3's throwing a lot of heat out and he's...", "P3: And P0 has the answer. Whichever one P0 didn't...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0080
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0080.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: P2 was lying. Or P3.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0080__MPP__w2
MPP
P1: [MASK] was lying. Or P3.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P1: Do you want to say who you swapped with?", "P3: I want to know first if there was a troublemaker.", "P1: Well, I was a villager.", "P3: I was a villager.", "P2: I was a villager.", "P1: [MASK] was lying. Or P3.", "P3: Would a troublemaker admit that there was a troublemaker?", "P1: P3 could be ly...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0080
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0080.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: P2 was lying. Or P3.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0080__MPP__w6
MPP
P1: P2 was lying. Or [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P1: Do you want to say who you swapped with?", "P3: I want to know first if there was a troublemaker.", "P1: Well, I was a villager.", "P3: I was a villager.", "P2: I was a villager.", "P1: P2 was lying. Or [MASK].", "P3: Would a troublemaker admit that there was a troublemaker?", "P1: P3 could be ly...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0082
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0082.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: P3 could be lying.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0082__MPP__w2
MPP
P1: [MASK] could be lying.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P1: Well, I was a villager.", "P3: I was a villager.", "P2: I was a villager.", "P1: P2 was lying. Or P3.", "P3: Would a troublemaker admit that there was a troublemaker?", "P1: [MASK] could be lying.", "P3: Was there a reason he would lie?", "P2: So, no one was a seer and no one was a troublemaker."...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0089
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0089.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P0
4
P0: I'll say who I switched with. I switched with P1.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0089__MPP__w11
MPP
P0: I'll say who I switched with. I switched with [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P2: So, no one was a seer and no one was a troublemaker.", "P1: No.", "P3: No one's admitting to it. Why would they lie?", "P1: What if there's two werewolves and it's those guys. And then...", "P3: I don't think they would lie. I don't think there is a seer and a trouble maker.", "P0: I'll say who I swi...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0101
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0101.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: Yeah, I think so, because I think it's P3.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0101__MPP__w10
MPP
P1: Yeah, I think so, because I think it's [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P3: Okay, so I know...", "P2: I know there's a werewolf and a troublemaker in there.", "P3: Your story has totally changed.", "P2: Fuck yeah.", "P0: Do you guys want to go on a vote?", "P1: Yeah, I think so, because I think it's [MASK].", "P0: You think it's P3?", "P1: Yeah.", "P2: Yeah.", "P0: W...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0102
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0102.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P0
4
P0: You think it's P3?
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0102__MPP__w5
MPP
P0: You think it's [MASK]?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P2: I know there's a werewolf and a troublemaker in there.", "P3: Your story has totally changed.", "P2: Fuck yeah.", "P0: Do you guys want to go on a vote?", "P1: Yeah, I think so, because I think it's P3.", "P0: You think it's [MASK]?", "P1: Yeah.", "P2: Yeah.", "P0: Well I think it's P2.", "P3...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0105
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0105.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P0
4
P0: Well I think it's P2.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0105__MPP__w6
MPP
P0: Well I think it's [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P0: Do you guys want to go on a vote?", "P1: Yeah, I think so, because I think it's P3.", "P0: You think it's P3?", "P1: Yeah.", "P2: Yeah.", "P0: Well I think it's [MASK].", "P3: P2 just got on board with voting for me.", "P2: Because I thought it was you from fucking the get go.", "P3: It's eithe...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0106
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0106.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P3
4
P3: P2 just got on board with voting for me.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0106__MPP__w2
MPP
P3: [MASK] just got on board with voting for me.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P1: Yeah, I think so, because I think it's P3.", "P0: You think it's P3?", "P1: Yeah.", "P2: Yeah.", "P0: Well I think it's P2.", "P3: [MASK] just got on board with voting for me.", "P2: Because I thought it was you from fucking the get go.", "P3: It's either you or there's no werewolf.", "P3: That...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0110
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0110.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: P0 can confirm.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0110__MPP__w2
MPP
P1: [MASK] can confirm.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P0: Well I think it's P2.", "P3: P2 just got on board with voting for me.", "P2: Because I thought it was you from fucking the get go.", "P3: It's either you or there's no werewolf.", "P3: That's the only option it could be.", "P1: [MASK] can confirm.", "P2: But I know there's a werewolf in there becau...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0115
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0115.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: And then P2 is a seer.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0115__MPP__w4
MPP
P1: And then [MASK] is a seer.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P1: P0 can confirm.", "P2: But I know there's a werewolf in there because I was a fucking seer. I know there's a troublemaker and a werewolf.", "P0: So, you're this, I'm this.", "P1: Yeah, because we switched.", "P0: Yeah.", "P1: And then [MASK] is a seer.", "P2: No-no. This is...", "P3: So, you saw ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0125
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0125.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: I think it's P3, because he's kind of grasping...
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0125__MPP__w5
MPP
P1: I think it's [MASK], because he's kind of grasping...
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "Audio: [inaudible 00:05:44] seconds left.", "P3: If he's telling the truth, he's a seer. If he's telling a lie, he's a werewolf.", "P2: Maybe we don't have a werewolf this time.", "P3: Yes. Yes, that's what I'm saying. If you're telling the truth, then there's two werewolf in here. If you're telling a lie......
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0126
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0126.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P3
4
P3: We have to... I think P2 is the werewolf.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0126__MPP__w7
MPP
P3: We have to... I think [MASK] is the werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P3: If he's telling the truth, he's a seer. If he's telling a lie, he's a werewolf.", "P2: Maybe we don't have a werewolf this time.", "P3: Yes. Yes, that's what I'm saying. If you're telling the truth, then there's two werewolf in here. If you're telling a lie...", "P0: We have 15 seconds.", "P1: I think ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0127
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0127.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P0
4
P0: I think it's P2.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0127__MPP__w5
MPP
P0: I think it's [MASK].
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P2: Maybe we don't have a werewolf this time.", "P3: Yes. Yes, that's what I'm saying. If you're telling the truth, then there's two werewolf in here. If you're telling a lie...", "P0: We have 15 seconds.", "P1: I think it's P3, because he's kind of grasping...", "P3: We have to... I think P2 is the werewo...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0128
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0128.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P1
4
P1: I think it's P3. So, what do we do with a tiebreaker?
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0128__MPP__w5
MPP
P1: I think it's [MASK]. So, what do we do with a tiebreaker?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P3: Yes. Yes, that's what I'm saying. If you're telling the truth, then there's two werewolf in here. If you're telling a lie...", "P0: We have 15 seconds.", "P1: I think it's P3, because he's kind of grasping...", "P3: We have to... I think P2 is the werewolf.", "P0: I think it's P2.", "P1: I think it's...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0131
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0131.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4
P3
4
P3: So, P1 why do you think it's me?
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game4_utt0131__MPP__w3
MPP
P3: So, [MASK] why do you think it's me?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P1
1
[ "P3: We have to... I think P2 is the werewolf.", "P0: I think it's P2.", "P1: I think it's P3. So, what do we do with a tiebreaker?", "P3: I don't know. We'll have to find out.", "P0: Okay.", "P3: So, [MASK] why do you think it's me?", "P0: All right. Let's all vote.", "P1: I don't know why.", "P0: ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0022
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0022.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P0
4
P0: I want to hear P3's-
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0022__MPP__w6
MPP
P0: I want to hear [MASK]'s-
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P3: Good. Something interesting happened that night.", "P1: Yeah.", "P3: I can tell you that.", "P0: Why do you say that?", "P2: I have a question. Was anyone the drunk? I know I wasn't the drunk. Was anyone the drunk?", "P0: I want to hear [MASK]'s-", "P1: P3 was the drunk.", "P0: I want to hear P3'...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0023
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0023.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P1
4
P1: P3 was the drunk.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0023__MPP__w2
MPP
P1: [MASK] was the drunk.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P1: Yeah.", "P3: I can tell you that.", "P0: Why do you say that?", "P2: I have a question. Was anyone the drunk? I know I wasn't the drunk. Was anyone the drunk?", "P0: I want to hear P3's-", "P1: [MASK] was the drunk.", "P0: I want to hear P3's first.", "P3: So you must be the seer.", "P1: I was ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0024
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0024.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P0
4
P0: I want to hear P3's first.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0024__MPP__w6
MPP
P0: I want to hear [MASK]'s first.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P3: I can tell you that.", "P0: Why do you say that?", "P2: I have a question. Was anyone the drunk? I know I wasn't the drunk. Was anyone the drunk?", "P0: I want to hear P3's-", "P1: P3 was the drunk.", "P0: I want to hear [MASK]'s first.", "P3: So you must be the seer.", "P1: I was the robber.", ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0030
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0030.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P0
4
P0: Did anyone do anything to P2?
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0030__MPP__w7
MPP
P0: Did anyone do anything to [MASK]?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P3: So you must be the seer.", "P1: I was the robber.", "P3: So then you ended up with the drunk card. And so I had the robber-", "P1: So you-", "P3: I thought I was-", "P0: Did anyone do anything to [MASK]?", "P1: You were the robber and then you switched with-", "P3: I switched it.", "P1: Somethi...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0035
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0035.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P0
4
P0: Did anyone do anything to P2? Because I was the seer and he had a werewolf card. 100% confirmed.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0035__MPP__w7
MPP
P0: Did anyone do anything to [MASK]? Because I was the seer and he had a werewolf card. 100% confirmed.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P0: Did anyone do anything to P2?", "P1: You were the robber and then you switched with-", "P3: I switched it.", "P1: Something else. So you could be the werewolf and you don't even know.", "P3: Absolutely.", "P0: Did anyone do anything to [MASK]? Because I was the seer and he had a werewolf card. 100% c...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0046
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0046.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P1
4
P1: P0, did you move any of them?
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0046__MPP__w2
MPP
P1: [MASK], did you move any of them?
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P0
0
[ "P2: So did anyone do anything to me?", "P0: Yes.", "P2: Because I guarantee you it was a werewolf. My first play was to look at this card, werewolf.", "P3: Oh my God.", "P2: So if these cards are moved, there's werewolves out there.", "P1: [MASK], did you move any of them?", "P0: No. I looked at P2's c...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0047
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0047.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P0
4
P0: No. I looked at P2's card and it was a werewolf.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0047__MPP__w6
MPP
P0: No. I looked at [MASK]'s card and it was a werewolf.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P0: Yes.", "P2: Because I guarantee you it was a werewolf. My first play was to look at this card, werewolf.", "P3: Oh my God.", "P2: So if these cards are moved, there's werewolves out there.", "P1: P0, did you move any of them?", "P0: No. I looked at [MASK]'s card and it was a werewolf.", "P2: And yo...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0050
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0050.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P1
4
P1: Because I corroborated P3's story before he even said anything about it. So that's what I'm trying to-
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0050__MPP__w5
MPP
P1: Because I corroborated [MASK]'s story before he even said anything about it. So that's what I'm trying to-
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P3
3
[ "P2: So if these cards are moved, there's werewolves out there.", "P1: P0, did you move any of them?", "P0: No. I looked at P2's card and it was a werewolf.", "P2: And you were just like, \"Oh fuck.\"", "P0: Yep.", "P1: Because I corroborated [MASK]'s story before he even said anything about it. So that's...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0053
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0053.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P0
4
P0: If I'm a werewolf and I'm trying to work with P2 and I together, I'm doing a poor job. So if we vote for P2 ... Because I have no way to switch the card. I'm coming here as a seer.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0053__MPP__w12
MPP
P0: If I'm a werewolf and I'm trying to work with [MASK] and I together, I'm doing a poor job. So if we vote for P2 ... Because I have no way to switch the card. I'm coming here as a seer.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P2: And you were just like, \"Oh fuck.\"", "P0: Yep.", "P1: Because I corroborated P3's story before he even said anything about it. So that's what I'm trying to-", "P0: I will stand by this.", "P2: Yeah.", "P0: If I'm a werewolf and I'm trying to work with [MASK] and I together, I'm doing a poor job. So...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0053
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0053.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P0
4
P0: If I'm a werewolf and I'm trying to work with P2 and I together, I'm doing a poor job. So if we vote for P2 ... Because I have no way to switch the card. I'm coming here as a seer.
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0053__MPP__w26
MPP
P0: If I'm a werewolf and I'm trying to work with P2 and I together, I'm doing a poor job. So if we vote for [MASK] ... Because I have no way to switch the card. I'm coming here as a seer.
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P2: And you were just like, \"Oh fuck.\"", "P0: Yep.", "P1: Because I corroborated P3's story before he even said anything about it. So that's what I'm trying to-", "P0: I will stand by this.", "P2: Yeah.", "P0: If I'm a werewolf and I'm trying to work with P2 and I together, I'm doing a poor job. So if ...
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0064
MMSI/original_video/ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0064.mp4
youtube
ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7
P0
4
P0: Well then, if we vote for P2, which I will vote along with-
[ "P0", "P1", "P2", "P3" ]
youtube__ONE#NIGHT#ULTIMATE#WEREWOLF##Retro#1_Game7_utt0064__MPP__w8
MPP
P0: Well then, if we vote for [MASK], which I will vote along with-
Predict which player is mentioned by name by the speaker in the sentence with [MASK]?
P2
2
[ "P1: And it said it was a werewolf?", "P2: I suddenly don't think you're a seer.", "P1: His said werewolf?", "P0: His said werewolf. Yep.", "P1: What if they're both werewolves?", "P0: Well then, if we vote for [MASK], which I will vote along with-", "P3: The villagers would win.", "P0: Then villagers...
End of preview.

Social Benchmark Dataset

Description

Social Benchmark is a video-based social understanding benchmark dataset containing 6,433 video clips from 3 evaluation sets: MMSI, Online-MMSI, and original TVQA+. Each benchmark tests different aspects of social reasoning in multi-person video scenarios.

Dataset Statistics

Benchmark Videos Size JSON Files
MMSI 1,708 ~377 MB 3 (mpp, pcr, sti)
Online-MMSI 1,708 ~2.9 GB 3 (mpp, pcr, sti)
original TVQA+ 3,017 ~540 MB 1 (eval)
Total 6,433 ~3.8 GB 7

Benchmark Tasks

  • MPP (Multi-Person Prediction): Predict social behaviors of multiple persons
  • PCR (Person-Centric Reasoning): Reason about individual person's social role
  • STI (Social Temporal Inference): Infer social dynamics over time
  • TVQA+: Video question answering with spatial-temporal grounding

Dataset Structure

social-benchmark/
β”œβ”€β”€ json/
β”‚   β”œβ”€β”€ mmsi_test_mpp_original.json
β”‚   β”œβ”€β”€ mmsi_test_pcr_original.json
β”‚   β”œβ”€β”€ mmsi_test_sti_original.json
β”‚   β”œβ”€β”€ online_mmsi_test_mpp_extended.json
β”‚   β”œβ”€β”€ online_mmsi_test_pcr_extended.json
β”‚   β”œβ”€β”€ online_mmsi_test_sti_extended.json
β”‚   └── tvqa_plus_eval.json
└── tars/
    β”œβ”€β”€ mmsi_videos_part001.tar
    β”œβ”€β”€ online_mmsi_videos_part001.tar
    └── original_tvqa_plus_videos_part001.tar

Usage

from huggingface_hub import snapshot_download

# Download everything
snapshot_download(
    repo_id="arkimjh/social-benchmark",
    repo_type="dataset",
    local_dir="./social-benchmark"
)

# Extract video archives
import tarfile
from pathlib import Path

for tar_file in Path("./social-benchmark/tars").glob("*.tar"):
    with tarfile.open(tar_file) as tf:
        tf.extractall("./social-benchmark/videos/")

Data Sources

  • MMSI: Multi-Modal Social Interaction benchmark (offline setting, original videos)
  • Online-MMSI: Multi-Modal Social Interaction benchmark (online setting, original videos)
  • original TVQA+: TV show QA with compositional spatio-temporal grounding (original videos)

Citation

TBD

Downloads last month
40