Annotation in segment timing #5
17 changed files with 1888 additions and 87 deletions
|
|
@ -1,12 +1,12 @@
|
|||
#!/usr/bin/python
|
||||
#!/usr/bin/python3
|
||||
"""
|
||||
created on Wed Jan 30 2018
|
||||
author: Christian Olaf Haeusler
|
||||
|
||||
To Do:
|
||||
argparser
|
||||
Erzaehler Filtern wennn MOVIE = True
|
||||
"""
|
||||
from __future__ import print_function
|
||||
from collections import defaultdict
|
||||
import os
|
||||
from os.path import basename
|
||||
|
|
@ -17,12 +17,6 @@ import sys
|
|||
import pandas as pd
|
||||
|
||||
|
||||
# constants #
|
||||
MOVIE = True
|
||||
CROPPED = 0 # in sec; is a concatenated time series with cropped volumes used?
|
||||
INPUT_FILES = sys.argv[1:]
|
||||
OUT_DIR = 'segments'
|
||||
|
||||
SEGMENTS_OFFSETS = (
|
||||
(0.00, 0.00),
|
||||
(886.00, 0.00),
|
||||
|
|
@ -34,6 +28,39 @@ SEGMENTS_OFFSETS = (
|
|||
(6410.44, 0.44), # last segment's start
|
||||
(7086.00, 0.00)) # movie's last time point
|
||||
|
||||
# dictionaries with paired touples containing time (2sec steps) and offset
|
||||
# in respect to the audiovisual movie (forrestgump_researchcut_ger_mono.mkv)
|
||||
AUDIO_AV_OFFSETS = {
|
||||
0: { 0: 21.33},
|
||||
1: { 0: 37.33,
|
||||
408: 21.33},
|
||||
2: { 0: 69.33,
|
||||
199: 61.33},
|
||||
3: { 0: 93.33,
|
||||
320: 101.33},
|
||||
4: { 0: 109.33,
|
||||
401: 101.33},
|
||||
5: { 0: 141.33},
|
||||
6: { 0: 189.31,
|
||||
61: 181.31},
|
||||
7: { 0: 205.33}}
|
||||
|
||||
AUDIO_AO_OFFSETS = {
|
||||
0: { 0: 47.02},
|
||||
1: { 0: 36.35,
|
||||
203: 47.02},
|
||||
2: { 0: 87.02,
|
||||
199: 92.35},
|
||||
3: { 0: 124.35,
|
||||
320: 132.35},
|
||||
4: { 0: 105.69,
|
||||
401: 92.35},
|
||||
5: { 0: 137.69,
|
||||
364: 167.02},
|
||||
6: { 0: 201.67,
|
||||
61: 543.00},
|
||||
7: { 0:-1422.31}}
|
||||
|
||||
|
||||
def time_stamp_to_msec(t_stamp='01:50:34:01'):
|
||||
'''
|
||||
|
|
@ -84,60 +111,47 @@ def get_run_number(starts, onset):
|
|||
return run
|
||||
|
||||
|
||||
def fix_segment_shift(timing_in_anno, cropped_time):
|
||||
'''
|
||||
the function is not necessary anymore since the correction
|
||||
is implicitly done by additionally given offsets in SEGMENTS_OFFSETS
|
||||
|
||||
|
||||
fixes the timing of the 8 stimulus movie sigments
|
||||
https://github.com/psychoinformatics-de/studyforrest-data-phase2/blob/master/code/stimulus/movie/segment_timing.csv
|
||||
'''
|
||||
# regular case which will be kept in runs 1 and 2
|
||||
timing_in_segment = timing_in_anno
|
||||
|
||||
# correct for the accumulating offsets in segments 3 to 8
|
||||
for segment_start, offset in sorted(SEGMENTS_OFFSETS, reverse = True):
|
||||
# if timing is in a critical segment, correct the timing
|
||||
if timing_in_anno >= segment_start + cropped_time:
|
||||
timing_in_segment = round(timing_in_anno - offset, 3)
|
||||
break
|
||||
|
||||
return timing_in_segment
|
||||
|
||||
|
||||
def fix_audio_timing(uncorrected_audio):
|
||||
'''the movie's audiotrack lacks behind the visual frames
|
||||
there is an slightly increasing offset (but problably no continuous drift)
|
||||
over the movie segments
|
||||
'''
|
||||
corrected_audio = uncorrected_audio
|
||||
return corrected_audio
|
||||
|
||||
|
||||
def anno_time_to_seg_time(seg_starts, run_nr, anno_time, cropped_time):
|
||||
def whole_anno_to_segments(seg_starts, run_nr, anno_time):
|
||||
'''
|
||||
"The position of an event from a movie annotation with respect to the
|
||||
cropped fMRI time series can now be determined by substracting the
|
||||
start time of the respective segment as listed in Table 1"
|
||||
http://studyforrest.org/annotation_timing.html
|
||||
|
||||
events occur earlier in the cropped stimulus segments.
|
||||
hence the cropped ammount is additionally substracted from the anno timing
|
||||
'''
|
||||
seg_time = round(anno_time - (seg_starts[run_nr] + cropped_time), 2)
|
||||
seg_time = anno_time - seg_starts[run_nr]
|
||||
|
||||
return seg_time
|
||||
|
||||
|
||||
def write_segmented_annos(infilename, movie, cropped, run_dict, out_dir, ):
|
||||
def fix_audio_movie_segments(AUDIO_AV_OFFSETS, run, uncorrected):
|
||||
'''corrects the segments' audio offsets
|
||||
in respect to the unsegmented movie
|
||||
'''
|
||||
'''
|
||||
if MOVIE is True:
|
||||
stimulus = 'avmovie'
|
||||
else:
|
||||
stimulus = 'aomovie'
|
||||
critical_time_points = sorted(AUDIO_AV_OFFSETS[run].keys(), reverse=True)
|
||||
for crit in critical_time_points:
|
||||
if uncorrected >= crit * 2.0:
|
||||
corrected = uncorrected + (AUDIO_AV_OFFSETS[run][crit] / 1000.0)
|
||||
break
|
||||
|
||||
return corrected
|
||||
|
||||
|
||||
def fix_audio_descr_segments(AUDIO_AO_OFFSETS, run, uncorrected):
|
||||
'''corrects the segments' audio offsets
|
||||
in respect to the unsegmented audiobook
|
||||
'''
|
||||
critical_time_points = sorted(AUDIO_AO_OFFSETS[run].keys(), reverse=True)
|
||||
for crit in critical_time_points:
|
||||
if uncorrected >= crit * 2.0:
|
||||
corrected = uncorrected + (AUDIO_AO_OFFSETS[run][crit] / 1000.0)
|
||||
break
|
||||
|
||||
return corrected
|
||||
|
||||
|
||||
def write_segmented_annos(infilename, stimulus, run_dict, out_dir):
|
||||
'''
|
||||
'''
|
||||
basefilename = basename(infilename)[:-4]
|
||||
outdir = opj(out_dir, stimulus)
|
||||
if not exists(outdir):
|
||||
|
|
@ -153,15 +167,21 @@ def write_segmented_annos(infilename, movie, cropped, run_dict, out_dir, ):
|
|||
columns=run_dict[run][0].dtype.names).to_csv(
|
||||
outname,
|
||||
sep='\t',
|
||||
index=False)
|
||||
index=False,
|
||||
encoding='utf-8')
|
||||
|
||||
|
||||
#### main program #####
|
||||
if __name__ == "__main__":
|
||||
# constants #
|
||||
infile = sys.argv[1]
|
||||
annotated_time = sys.argv[2]
|
||||
target_time = sys.argv[3]
|
||||
outdir = sys.argv[4]
|
||||
|
||||
# with launch_ipdb_on_exception():
|
||||
# read the annotation file
|
||||
for input_file in INPUT_FILES[:1]:
|
||||
anno = pd.read_csv(input_file, sep='\t').to_records(index=False)
|
||||
anno = pd.read_csv(infile, sep='\t', encoding='utf-8').to_records(index=False)
|
||||
segment_starts = [start for start, offset in SEGMENTS_OFFSETS]
|
||||
|
||||
run_events = defaultdict(list)
|
||||
|
|
@ -169,33 +189,60 @@ if __name__ == "__main__":
|
|||
# get the run number
|
||||
run = get_run_number(segment_starts, row['onset'])
|
||||
|
||||
# SEGMENT SHIFT correction
|
||||
# is now implicitly done by func 'anno_time_to_seg_time'
|
||||
# using the adjusted segment starts (s. SEGMENTS_OFFSETS)
|
||||
# row[0] = fix_segment_shift(row[0], CROPPED)
|
||||
# if type(row[1]) == float:
|
||||
# row[1] = fix_segment_shift(row[1], CROPPED)
|
||||
|
||||
# finally convert the timings of the continouos annotation
|
||||
# convert the timings of a continuous annotation
|
||||
# to timings in respect to the start of the corresponding segment
|
||||
onset = anno_time_to_seg_time(
|
||||
onset_in_seg = whole_anno_to_segments(
|
||||
segment_starts,
|
||||
run,
|
||||
float(row['onset']),
|
||||
CROPPED)
|
||||
row['onset'] = onset
|
||||
float(row['onset']))
|
||||
|
||||
# AUDIO TIMING (MOVIE) correction
|
||||
# Dialoge im Film kommen 1/2 frame spater als das Hoerspiel,
|
||||
# das einem frame (40ms) nach vorn gezogen wurde
|
||||
if MOVIE is True:
|
||||
|
||||
# correct for the stimulus used to annotate the audiotrack
|
||||
if annotated_time == 'aomovie':
|
||||
# the files
|
||||
# forrestgump_researchcut_ad_ger.flac and
|
||||
# german_dvd_5.1_48000hz_488kb_research_cut_aligned_cutted_narrator_muted_48000Hz.flac
|
||||
# (that contain the audio description) were originally lagging
|
||||
# behind for XYZ msec and were shiftet forward
|
||||
# by one frame (40ms) in respect to the reference file
|
||||
# forrestgump_researchcut_ger.mkv
|
||||
|
||||
# 1st, correct for shifting the narrator (incl. dialogue) 40ms
|
||||
# to the front before annotating the narrator/dialogue
|
||||
onset_in_seg += 0.040
|
||||
|
||||
# 2nd, correct for the offset between the (unshifted) audio
|
||||
# description and the audiovisual movie
|
||||
# -> the offset is varying +/- one frame (40 ms) around 0
|
||||
onset_in_seg -= 0.000
|
||||
|
||||
# 3rd, correct for the offset between whole stimulus
|
||||
# (audiovisual or audio-only) and its segments
|
||||
if target_time == 'avmovie':
|
||||
onset_in_seg = fix_audio_movie_segments(
|
||||
AUDIO_AV_OFFSETS,
|
||||
run,
|
||||
onset_in_seg)
|
||||
|
||||
elif target_time == 'aomovie':
|
||||
onset_in_seg = fix_audio_descr_segments(
|
||||
AUDIO_AO_OFFSETS,
|
||||
run,
|
||||
onset_in_seg)
|
||||
|
||||
else:
|
||||
raise ValueError('Unknown time label %s', target_time)
|
||||
|
||||
elif annotated_time == 'avmovie':
|
||||
# all splendid for now
|
||||
pass
|
||||
|
||||
# AUDIO TIMING (AUDIOBOOK) correction
|
||||
if MOVIE is False:
|
||||
pass
|
||||
else:
|
||||
raise ValueError('%s is an unknown annotation', basename(input_file))
|
||||
|
||||
row['onset'] = round(onset_in_seg, 3)
|
||||
|
||||
# append that shit
|
||||
run_events[run].append(row)
|
||||
|
||||
write_segmented_annos(input_file, MOVIE, CROPPED, run_events, OUT_DIR)
|
||||
write_segmented_annos(infile, target_time, run_events, outdir)
|
||||
|
|
|
|||
85
segments/aomovie/locations_run-1_events.tsv
Normal file
85
segments/aomovie/locations_run-1_events.tsv
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
0.0 17.0 Paramount mountain logo mountain logo ext 0 day
|
||||
17.0 151.08 Savannah sky over Savannah sky over Savannah ext ++ day
|
||||
168.08 104.12 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
272.2 14.12 Greenbow Alabama doctor's office doctor's office int - day
|
||||
286.32 14.24 Greenbow Alabama doctor's office doctor's office int 0 day
|
||||
300.56 11.4 Greenbow Alabama doctor's office doctor's office int 0 day
|
||||
311.96 6.32 Greenbow Alabama main street crossroads ext + day
|
||||
318.28 24.76 United States flashback countryside flashback countryside ext - day
|
||||
343.04 10.04 Greenbow Alabama main street in front of barbershop ext ++ day
|
||||
353.08 5.0 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
358.08 1.96 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
360.04 1.8 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
361.84 1.2 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
363.04 22.6 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
385.64 17.16 Gump property access-road at the mail boxes ext + day
|
||||
402.8 22.8 Gump property access-road alley to Gump House ext + day
|
||||
425.6 8.88 Gump property Gump House front of Gump House ext 0 day
|
||||
434.48 4.08 Greenbow Alabama school Hancock's office int ++ day
|
||||
438.56 4.88 Greenbow Alabama school Hancock's office int 0 day
|
||||
443.44 4.32 Greenbow Alabama school Hancock's office int 0 day
|
||||
447.76 14.68 Greenbow Alabama school school hallway int 0 day
|
||||
462.44 4.4 Greenbow Alabama school Hancock's office int 0 day
|
||||
466.84 4.52 Greenbow Alabama school Hancock's office int 0 day
|
||||
471.36 4.16 Greenbow Alabama school Hancock's office int 0 day
|
||||
475.52 17.16 Greenbow Alabama school Hancock's office int 0 day
|
||||
492.68 3.4 Greenbow Alabama school Hancock's office int 0 day
|
||||
496.08 4.08 Greenbow Alabama school Hancock's office int 0 day
|
||||
500.16 7.52 Greenbow Alabama school school hallway int 0 day
|
||||
507.68 4.64 Greenbow Alabama school Hancock's office int 0 day
|
||||
512.32 4.56 Greenbow Alabama school Hancock's office int 0 day
|
||||
516.88 5.36 Gump property Gump House front of Gump House ext ++ night
|
||||
522.24 4.52 Gump property Gump House front of Gump House ext 0 night
|
||||
526.76 28.96 Gump property Gump House front of Gump House ext + night
|
||||
555.72 30.76 Gump property Gump House Forrest's bedroom int + night
|
||||
586.48 8.36 Gump property Gump House front of Gump House ext ++ day
|
||||
594.84 17.24 Gump property Gump House corridor downstairs int 0 day
|
||||
612.08 18.32 Gump property Gump House corridor upstairs int + day
|
||||
630.4 2.08 Gump property Gump House Jenny's bedroom int 0 day
|
||||
632.48 1.16 Gump property Gump House Jenny's bedroom int 0 day
|
||||
633.64 2.72 Gump property Gump House Jenny's bedroom int 0 day
|
||||
636.36 20.52 Gump property Gump House Jenny's bedroom int 0 day
|
||||
656.88 2.56 Gump property Gump House Jenny's bedroom int 0 day
|
||||
659.44 10.12 Gump property Gump House Jenny's bedroom int 0 day
|
||||
669.56 5.44 Greenbow Alabama main street in front of electronic store ext ++ night
|
||||
675.0 4.8 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
679.8 1.76 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
681.56 4.64 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
686.2 6.32 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
692.52 10.04 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
702.56 10.12 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
712.68 8.68 Gump property access-road at the mail boxes ext - day
|
||||
721.36 6.08 Gump property access-road at the mail boxes ext 0 day
|
||||
727.44 2.64 Gump property access-road at the mail boxes ext 0 day
|
||||
730.08 2.8 Gump property access-road at the mail boxes ext 0 day
|
||||
732.88 5.56 Gump property access-road at the mail boxes ext 0 day
|
||||
738.44 2.24 Gump property access-road at the mail boxes ext 0 day
|
||||
740.68 2.4 Gump property access-road at the mail boxes ext 0 day
|
||||
743.08 2.08 Gump property access-road at the mail boxes ext 0 day
|
||||
745.16 7.08 Gump property access-road at the mail boxes ext 0 day
|
||||
752.24 3.0 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
755.24 2.64 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
757.88 1.44 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
759.32 1.32 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
760.64 1.0 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
761.64 8.6 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
770.24 1.04 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
771.28 7.24 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
778.52 12.52 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
791.04 8.52 Greenbow Alabama school bus inside driving bus int - day
|
||||
799.56 2.2 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
801.76 4.52 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
806.28 1.72 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
808.0 5.44 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
813.44 15.88 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
829.32 4.16 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
833.48 3.48 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
836.96 2.92 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
839.88 7.44 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
847.32 4.8 Greenbow Alabama tree on a field tree on a field ext ++ day
|
||||
852.12 5.08 Greenbow Alabama tree on a field tree on a field ext + day
|
||||
857.2 3.96 Greenbow Alabama tree on a field tree on a field ext ++ day
|
||||
861.16 4.04 Greenbow Alabama tree on a field tree on a field ext + day
|
||||
865.2 7.12 Greenbow Alabama tree on a field tree on a field ext ++ day
|
||||
872.32 13.76 Greenbow Alabama tree on a field tree on a field ext 0 day
|
||||
|
156
segments/aomovie/locations_run-2_events.tsv
Normal file
156
segments/aomovie/locations_run-2_events.tsv
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
0.08 5.08 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
5.16 8.64 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
13.8 2.0 Gump property access-road alley to Gump House ext - day
|
||||
15.8 1.16 Gump property access-road alley to Gump House ext 0 day
|
||||
16.96 1.92 Gump property access-road alley to Gump House ext 0 day
|
||||
18.88 1.12 Gump property access-road alley to Gump House ext 0 day
|
||||
20.0 1.96 Gump property access-road alley to Gump House ext 0 day
|
||||
21.96 1.08 Gump property access-road alley to Gump House ext 0 day
|
||||
23.04 1.44 Gump property access-road alley to Gump House ext 0 day
|
||||
24.48 0.8 Gump property access-road alley to Gump House ext 0 day
|
||||
25.28 1.44 Gump property access-road alley to Gump House ext 0 day
|
||||
26.72 2.08 Gump property access-road alley to Gump House ext 0 day
|
||||
28.8 1.6 Gump property access-road alley to Gump House ext 0 day
|
||||
30.4 3.56 Gump property access-road alley to Gump House ext 0 day
|
||||
33.96 4.92 Gump property access-road alley to Gump House ext 0 day
|
||||
38.88 3.28 Gump property access-road alley to Gump House ext 0 day
|
||||
42.16 3.0 Gump property access-road alley to Gump House ext 0 day
|
||||
45.16 1.4 Gump property access-road alley to Gump House ext 0 day
|
||||
46.56 1.36 Gump property access-road alley to Gump House ext 0 day
|
||||
47.92 1.64 Gump property access-road alley to Gump House ext 0 day
|
||||
49.56 1.76 Gump property access-road alley to Gump House ext 0 day
|
||||
51.32 6.0 Gump property access-road alley to Gump House ext 0 day
|
||||
57.32 2.32 Gump property access-road alley to Gump House ext 0 day
|
||||
59.64 2.52 Gump property access-road alley to Gump House ext 0 day
|
||||
62.16 2.92 Gump property access-road alley to Gump House ext 0 day
|
||||
65.08 2.76 Gump property access-road alley to Gump House ext 0 day
|
||||
67.84 5.76 Gump property access-road alley to Gump House ext 0 day
|
||||
73.6 1.84 Gump property access-road alley to Gump House ext 0 day
|
||||
75.44 1.8 Gump property access-road alley to Gump House ext 0 day
|
||||
77.24 1.64 Gump property access-road alley to Gump House ext 0 day
|
||||
78.88 3.84 Gump property access-road alley to Gump House ext 0 day
|
||||
82.72 3.84 Gump property access-road alley to Gump House ext 0 day
|
||||
86.56 2.52 Gump property access-road alley to Gump House ext 0 day
|
||||
89.08 4.92 Gump property access-road alley to Gump House ext 0 day
|
||||
94.0 3.28 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
97.28 1.6 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
98.88 6.36 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
105.24 9.36 Gump property access-road alley to Gump House ext - day
|
||||
114.6 8.36 Gump property access-road meadow near Gump House ext 0 day
|
||||
122.96 6.52 Greenbow Alabama road with bridge road with bridge ext + day
|
||||
129.48 3.24 Greenbow Alabama road between trees road between trees ext + day
|
||||
132.72 8.04 Greenbow Alabama main street in front of barbershop ext + day
|
||||
140.76 13.52 Greenbow Alabama Jenny's house front of Jenny's house ext + day
|
||||
154.28 20.92 Greenbow Alabama Jenny's house front of Jenny's house ext 0 day
|
||||
175.2 11.72 Greenbow Alabama Jenny's house front of Jenny's house ext 0 day
|
||||
186.92 2.04 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
188.96 3.68 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
192.64 4.68 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
197.32 1.4 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
198.72 2.12 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
200.84 7.84 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
208.68 15.6 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
224.28 13.6 Greenbow Alabama Jenny's grandma's trailer Jenny's grandma's trailer ext ++ day
|
||||
237.88 11.92 Gump property Gump House front of Gump House ext ++ night
|
||||
249.8 8.6 Gump property Gump House Forrest's bedroom int + night
|
||||
258.4 4.96 Gump property access-road alley to Gump House ext ++ day
|
||||
263.36 0.84 Gump property access-road alley to Gump House ext 0 day
|
||||
264.2 2.84 Gump property access-road alley to Gump House ext 0 day
|
||||
267.04 1.32 Gump property access-road alley to Gump House ext 0 day
|
||||
268.36 0.72 Gump property access-road alley to Gump House ext 0 day
|
||||
269.08 2.28 Gump property access-road alley to Gump House ext 0 day
|
||||
271.36 3.28 Gump property access-road alley to Gump House ext 0 day
|
||||
274.64 1.36 Gump property access-road alley to Gump House ext 0 day
|
||||
276.0 1.16 Gump property access-road alley to Gump House ext 0 day
|
||||
277.16 0.92 Gump property access-road alley to Gump House ext 0 day
|
||||
278.08 0.96 Gump property access-road alley to Gump House ext 0 day
|
||||
279.04 1.32 Gump property access-road alley to Gump House ext 0 day
|
||||
280.36 1.28 Gump property access-road alley to Gump House ext 0 day
|
||||
281.64 2.16 Gump property access-road alley to Gump House ext 0 day
|
||||
283.8 1.84 Gump property access-road alley to Gump House ext 0 day
|
||||
285.64 1.36 Gump property access-road inside the pursuing car int 0 day
|
||||
287.0 1.44 Gump property access-road alley to Gump House ext 0 day
|
||||
288.44 1.04 Gump property access-road alley to Gump House ext 0 day
|
||||
289.48 2.32 Gump property access-road alley to Gump House ext 0 day
|
||||
291.8 0.88 Gump property access-road alley to Gump House ext 0 day
|
||||
292.68 1.72 Gump property access-road alley to Gump House ext 0 day
|
||||
294.4 9.16 Gump property access-road alley to Gump House ext 0 day
|
||||
303.56 2.56 Gump property access-road alley to Gump House ext 0 day
|
||||
306.12 1.88 Gump property access-road meadow near Gump House ext 0 day
|
||||
308.0 7.8 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
315.8 8.96 Greenbow Alabama football field road next to football field ext - day
|
||||
324.76 7.48 Greenbow Alabama football field road next to football field ext 0 day
|
||||
332.24 0.88 Greenbow Alabama football field stands ext 0 day
|
||||
333.12 0.84 Greenbow Alabama football field on the football field ext 0 day
|
||||
333.96 2.52 Greenbow Alabama football field stands ext 0 day
|
||||
336.48 4.2 Greenbow Alabama football field on the football field ext 0 day
|
||||
340.68 4.44 Greenbow Alabama football field stands ext 0 day
|
||||
345.12 1.72 Greenbow Alabama football field stands ext 0 day
|
||||
346.84 3.04 Greenbow Alabama football field stands ext 0 day
|
||||
349.88 5.16 Greenbow Alabama football field on the football field ext 0 day
|
||||
355.04 0.88 University of Alabama football stadium football field in stadium ext ++ day
|
||||
355.92 2.92 University of Alabama football stadium stands ext 0 day
|
||||
358.84 6.0 University of Alabama football stadium football field in stadium ext 0 day
|
||||
364.84 2.88 University of Alabama football stadium technical area ext 0 day
|
||||
367.72 4.68 University of Alabama football stadium football field in stadium ext 0 day
|
||||
372.4 2.88 University of Alabama football stadium football field in stadium ext 0 day
|
||||
375.28 4.6 University of Alabama football stadium stands ext 0 day
|
||||
379.88 2.96 University of Alabama football stadium technical area ext 0 day
|
||||
382.84 1.92 University of Alabama football stadium football field in stadium ext 0 day
|
||||
384.76 2.76 University of Alabama football stadium football field in stadium ext 0 day
|
||||
387.52 3.56 University of Alabama football stadium football field in stadium ext 0 day
|
||||
391.08 2.2 University of Alabama football stadium football field in stadium ext 0 day
|
||||
393.28 5.0 University of Alabama football stadium end zone ext 0 day
|
||||
398.28 8.28 University of Alabama football stadium technical area ext 0 day
|
||||
406.56 5.28 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext ++ night
|
||||
411.84 2.8 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
414.64 2.24 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
416.88 3.36 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
420.24 4.56 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
424.8 3.64 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
428.44 5.4 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
433.84 3.36 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
437.2 0.96 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
438.16 5.4 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
443.56 55.24 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
498.8 12.92 University of Alabama girl's dormitory corrridor int + night
|
||||
511.72 42.36 University of Alabama girl's dormitory Jenny's room int + night
|
||||
554.08 6.84 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
560.92 5.68 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
566.6 5.16 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
571.76 24.84 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
596.6 9.36 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
605.96 23.48 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
629.44 9.84 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
639.28 3.32 University of Alabama football stadium stands ext ++ day
|
||||
642.6 3.36 University of Alabama football stadium football field in stadium ext 0 day
|
||||
645.96 1.36 University of Alabama football stadium end zone ext 0 day
|
||||
647.32 1.36 University of Alabama football stadium football field in stadium ext 0 day
|
||||
648.68 5.48 University of Alabama football stadium end zone ext 0 day
|
||||
654.16 5.04 University of Alabama football stadium end zone ext 0 day
|
||||
659.2 4.4 Washington D.C. White House front of White House (broadcast) ext ++ day
|
||||
663.6 6.8 Washington D.C. White House unknown_1 (broadcast) int 0 day
|
||||
670.4 19.84 Washington D.C. White House room with buffet int + day
|
||||
690.24 3.8 Washington D.C. White House room with buffet int + day
|
||||
694.04 8.36 Washington D.C. White House Oval Office (broadcast) int + day
|
||||
702.4 5.92 Washington D.C. White House Oval Office (broadcast) int 0 day
|
||||
708.32 4.88 Washington D.C. White House Oval Office (broadcast) int 0 day
|
||||
713.2 19.88 Washington D.C. White House president's bathroom int + day
|
||||
733.08 4.2 Dallas downtown Dallas Dealey Plaza (broadcast) ext ++ day
|
||||
737.28 4.72 Los Angeles Ambassador Hotel ballroom (broadcast) int ++ day
|
||||
742.0 6.12 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
748.12 9.28 University of Alabama college graduation stage and audience ext - day
|
||||
757.4 2.12 University of Alabama college graduation stage and audience ext 0 day
|
||||
759.52 13.0 University of Alabama college graduation in front of statue ext + day
|
||||
772.52 2.64 University of Alabama college graduation in front of statue ext 0 day
|
||||
775.16 6.32 United States army bus inside army bus int ++ day
|
||||
781.48 14.36 United States army bus inside army bus int 0 day
|
||||
795.84 1.92 United States army bus inside army bus int 0 day
|
||||
797.76 2.04 United States army bus inside army bus int 0 day
|
||||
799.8 4.32 United States army bus inside army bus int 0 day
|
||||
804.12 2.36 United States army bus inside army bus int 0 day
|
||||
806.48 42.96 United States army bus inside army bus int 0 day
|
||||
849.44 4.08 Bayou La Batre fine house fine house's dining room int - day
|
||||
853.52 5.28 Bayou La Batre fine house fine house's dining room int - day
|
||||
858.8 14.32 United States army bus inside army bus int ++ day
|
||||
|
95
segments/aomovie/locations_run-3_events.tsv
Normal file
95
segments/aomovie/locations_run-3_events.tsv
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
7.04 37.28 United States barracks dormitory int ++ day
|
||||
44.32 49.12 United States barracks dormitory int ++ day
|
||||
93.44 10.84 United States barracks dormitory int ++ day
|
||||
104.28 15.44 United States barracks dormitory int ++ day
|
||||
119.72 4.8 United States barracks dormitory int ++ night
|
||||
124.52 21.8 United States barracks dormitory int 0 night
|
||||
146.32 3.28 United States barracks dormitory int 0 night
|
||||
149.6 5.64 United States barracks dormitory int 0 night
|
||||
155.24 8.48 United States barracks dormitory int 0 night
|
||||
163.72 35.64 Memphis night club inside the night club int ++ night
|
||||
199.36 1.12 Memphis night club inside the night club int 0 night
|
||||
200.48 14.2 Memphis night club inside the night club int 0 night
|
||||
214.68 11.68 Memphis night club inside the night club int 0 night
|
||||
226.36 6.04 Memphis night club inside the night club int 0 night
|
||||
232.4 5.84 Memphis night club inside the night club int 0 night
|
||||
238.24 3.16 Memphis night club inside the night club int 0 night
|
||||
241.4 5.32 Memphis night club inside the night club int 0 night
|
||||
246.72 2.64 Memphis night club inside the night club int 0 night
|
||||
249.36 1.44 Memphis night club inside the night club int 0 night
|
||||
250.8 1.92 Memphis night club inside the night club int 0 night
|
||||
252.72 0.64 Memphis night club inside the night club int 0 night
|
||||
253.36 8.2 Memphis night club inside the night club int 0 night
|
||||
261.56 3.52 Memphis night club inside the night club int 0 night
|
||||
265.08 3.12 Memphis night club inside the night club int 0 night
|
||||
268.2 4.72 Memphis night club inside the night club int 0 night
|
||||
272.92 3.96 Memphis night club inside the night club int 0 night
|
||||
276.88 9.0 Memphis bridge near club bridge near club ext + night
|
||||
285.88 3.92 Memphis bridge near club bridge near club ext 0 night
|
||||
289.8 3.44 Memphis bridge near club bridge near club ext 0 night
|
||||
293.24 4.2 Memphis bridge near club bridge near club ext 0 night
|
||||
297.44 23.72 Memphis bridge near club bridge near club ext 0 night
|
||||
321.16 9.88 Memphis bridge near club bridge near club ext 0 night
|
||||
331.04 6.48 Memphis bridge near club bridge near club ext 0 night
|
||||
337.52 13.68 Memphis bridge near club bridge near club ext 0 night
|
||||
351.2 2.4 Memphis bridge near club bridge near club ext 0 night
|
||||
353.6 1.6 Memphis bridge near club bridge near club ext 0 night
|
||||
355.2 4.08 Memphis bridge near club bridge near club ext 0 night
|
||||
359.28 1.56 Memphis bridge near club bridge near club ext 0 night
|
||||
360.84 2.8 Memphis bridge near club bridge near club ext 0 night
|
||||
363.64 11.68 Memphis bridge near club bridge near club ext 0 night
|
||||
375.32 4.24 Memphis bridge near club bridge near club ext 0 night
|
||||
379.56 4.0 Memphis bridge near club bridge near club ext 0 night
|
||||
383.56 1.48 Memphis bridge near club bridge near club ext 0 night
|
||||
385.04 1.4 Memphis bridge near club bridge near club ext 0 night
|
||||
386.44 3.84 Memphis bridge near club bridge near club ext 0 night
|
||||
390.28 3.76 Memphis bridge near club bridge near club ext 0 night
|
||||
394.04 1.52 Memphis bridge near club bridge near club ext 0 night
|
||||
395.56 2.96 Memphis bridge near club bridge near club ext 0 night
|
||||
398.52 15.88 Vietnam Military Base helicopter ext ++ day
|
||||
414.4 26.68 Vietnam Military Base helicopter ext + day
|
||||
441.08 24.52 Vietnam Military Base barbecue near river ext 0 day
|
||||
465.6 39.16 Vietnam Military Base at Dan's tent ext 0 day
|
||||
504.76 4.64 Vietnam Military Base at Dan's tent ext 0 day
|
||||
509.4 4.56 Vietnam Military Base at Dan's tent ext 0 day
|
||||
513.96 13.24 Vietnam Military Base at Dan's tent ext 0 day
|
||||
527.2 2.0 Vietnam Military Base at Dan's tent ext 0 day
|
||||
529.2 5.44 Vietnam Military Base at Dan's tent ext 0 day
|
||||
534.64 19.76 Vietnam Military Base at Dan's tent ext 0 day
|
||||
554.4 2.48 Vietnam Military Base at Dan's tent ext 0 day
|
||||
556.88 1.48 United States battlefield in Revolutionary War battlefield in Revolutionary War ext - day
|
||||
558.36 1.6 United States battlefield in American Zivil War battlefield in American Zivil War ext ++ day
|
||||
559.96 1.16 Europe battlefield in World War 1 battlefield in World War 1 ext ++ day
|
||||
561.12 2.08 Europe battlefield in World War 2 battlefield in World War 2 ext ++ day
|
||||
563.2 44.28 Vietnam Military Base at Dan's tent ext ++ day
|
||||
607.48 8.32 Vietnam rice field in front of mountains rice field in front of mountains ext ++ day
|
||||
615.8 7.48 Vietnam rice field in front of mountains rice field in front of mountains ext 0 day
|
||||
623.28 11.36 Vietnam road betweeen rice fields road betweeen rice fields ext ++ day
|
||||
634.64 9.96 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
644.6 2.04 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
646.64 7.16 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
653.8 15.28 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
669.08 1.88 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
670.96 8.04 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
679.0 3.2 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
682.2 7.0 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
689.2 1.6 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
690.8 3.04 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
693.84 1.52 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
695.36 1.6 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
696.96 2.16 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
699.12 4.12 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
703.24 5.68 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
708.92 2.84 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
711.76 13.04 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
724.8 11.72 Vietnam field with NLF tunnel field with NLF tunnel ext ++ day
|
||||
736.52 10.6 Vietnam flooded rice field flooded rice field ext ++ day
|
||||
747.12 5.96 Vietnam foxhole in jungle foxhole in jungle ext ++ day
|
||||
753.08 3.8 Vietnam random rainy jungle random rainy jungle ext ++ day
|
||||
756.88 2.72 Vietnam rainy field rainy field ext ++ day
|
||||
759.6 5.04 Vietnam flooded jungle flooded jungle ext ++ day
|
||||
764.64 66.28 Vietnam rain-swept camp rain-swept camp ext ++ night
|
||||
830.92 17.84 Vietnam rain-swept camp rain-swept camp ext + night
|
||||
848.76 10.72 Greenbow Alabama Jenny's grandma's trailer Jenny's grandma's trailer ext 0 day
|
||||
859.48 7.2 Vietnam rain-swept camp rain-swept camp ext 0 night
|
||||
|
138
segments/aomovie/locations_run-4_events.tsv
Normal file
138
segments/aomovie/locations_run-4_events.tsv
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
6.6 41.56 Vietnam embattled jungle embattled embankment ext ++ day
|
||||
48.16 5.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
53.96 1.72 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
55.68 1.36 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
57.04 1.4 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
58.44 8.12 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
66.56 2.32 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
68.88 3.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
72.68 1.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
74.48 0.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
75.28 1.56 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
76.84 2.16 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
79.0 1.48 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
80.48 0.96 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
81.44 6.0 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
87.44 1.68 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
89.12 1.16 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
90.28 0.84 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
91.12 1.16 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
92.28 1.76 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
94.04 0.68 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
94.72 1.44 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
96.16 0.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
96.96 1.6 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
98.56 1.44 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
100.0 3.12 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
103.12 7.72 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
110.84 3.92 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
114.76 8.24 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
123.0 8.84 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
131.84 17.76 Vietnam embattled jungle in front of embattled jungle ext 0 day
|
||||
149.6 4.8 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
154.4 13.92 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
168.32 1.8 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
170.12 1.08 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
171.2 6.12 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
177.32 1.72 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
179.04 6.44 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
185.48 10.8 Vietnam embattled jungle glade at river ext + day
|
||||
196.28 4.32 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
200.6 5.48 Vietnam embattled jungle glade at river ext + day
|
||||
206.08 2.88 Vietnam embattled jungle finding place of Dallas ext + day
|
||||
208.96 2.16 Vietnam embattled jungle glade at river ext + day
|
||||
211.12 2.92 Vietnam embattled jungle glade at river ext 0 day
|
||||
214.04 4.72 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
218.76 25.32 Vietnam embattled jungle finding place of Dan ext 0 day
|
||||
244.08 9.16 Vietnam embattled jungle finding place of Dan ext 0 day
|
||||
253.24 6.2 Vietnam embattled jungle glade in embattled jungle ext + day
|
||||
259.44 4.64 Vietnam embattled jungle glade in embattled jungle ext 0 day
|
||||
264.08 1.68 Vietnam embattled jungle glade in embattled jungle ext 0 day
|
||||
265.76 3.32 Vietnam embattled jungle glade in embattled jungle ext 0 day
|
||||
269.08 2.68 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
271.76 5.12 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
276.88 7.2 Vietnam embattled jungle in front of embattled jungle ext 0 day
|
||||
284.08 4.84 Vietnam embattled jungle glade at river ext 0 day
|
||||
288.92 7.12 Vietnam embattled jungle glade at river ext 0 day
|
||||
296.04 6.04 Vietnam embattled jungle glade at river ext 0 day
|
||||
302.08 7.28 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
309.36 8.4 Vietnam embattled jungle finding place of Bubba ext 0 day
|
||||
317.76 8.2 Vietnam embattled jungle finding place of Bubba ext 0 day
|
||||
325.96 1.84 Vietnam embattled jungle finding place of Bubba ext 0 day
|
||||
327.8 25.08 Vietnam embattled jungle finding place of Bubba ext 0 day
|
||||
352.88 5.44 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
358.32 6.24 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
364.56 25.08 Vietnam embattled jungle in front of embattled jungle ext 0 day
|
||||
389.64 11.32 Vietnam embattled jungle glade at river ext + day
|
||||
400.96 14.72 Vietnam embattled jungle glade at river ext 0 day
|
||||
415.68 13.6 Vietnam embattled jungle glade at river ext 0 day
|
||||
429.28 18.36 Vietnam embattled jungle glade at river ext 0 day
|
||||
447.64 13.92 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
461.56 20.2 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
481.76 31.72 Vietnam hospital dormitory hospital dormitory int - day
|
||||
513.48 15.04 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
528.52 15.24 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
543.76 8.68 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
552.44 6.64 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
559.08 54.32 Vietnam hospital lounge hospital lounge int ++ day
|
||||
613.4 5.92 Vietnam hospital lounge hospital lounge int ++ day
|
||||
619.32 3.48 Vietnam hospital lounge hospital lounge int 0 day
|
||||
622.8 16.84 Vietnam hospital lounge hospital lounge int ++ day
|
||||
639.64 15.96 Vietnam hospital lounge hospital lounge int ++ day
|
||||
655.6 8.76 Vietnam hospital dormitory hospital dormitory int ++ day
|
||||
664.36 17.48 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
681.84 3.56 Washington D.C. White House front of White House (broadcast) ext ++ day
|
||||
685.4 4.84 Greenbow Alabama main street in the barbershop int 0 day
|
||||
690.24 3.36 Greenbow Alabama main street in the barbershop int 0 day
|
||||
693.6 1.96 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
695.56 1.68 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
697.24 5.44 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
702.68 1.92 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
704.6 6.8 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
711.4 3.76 Greenbow Alabama main street in the barbershop int 0 day
|
||||
715.16 1.36 Greenbow Alabama main street in the barbershop int 0 day
|
||||
716.52 0.92 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
717.44 1.0 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
718.44 4.04 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
722.48 13.48 Washington D.C. Lincoln Memorial bus stop near Lincoln Memorial ext ++ day
|
||||
735.96 10.4 Washington D.C. Lincoln Memorial bus stop near Lincoln Memorial ext 0 day
|
||||
746.36 1.72 Washington D.C. Lincoln Memorial bus stop near Lincoln Memorial ext 0 day
|
||||
748.08 9.08 Washington D.C. Lincoln Memorial bus stop near Lincoln Memorial ext 0 day
|
||||
757.16 28.36 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
785.52 5.6 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
791.12 7.28 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
798.4 3.04 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
801.44 3.0 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
804.44 1.4 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
805.84 20.4 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
826.24 4.68 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
830.92 2.36 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
833.28 3.76 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
837.04 5.76 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
842.8 3.64 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
846.44 19.28 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
865.72 9.92 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
875.64 2.48 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
878.12 10.48 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
888.6 3.44 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
892.04 3.2 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
895.24 1.88 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
897.12 2.56 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
899.68 4.12 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
903.8 3.88 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
907.68 6.08 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
913.76 9.92 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
923.68 7.2 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
930.88 1.16 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
932.04 1.96 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
934.0 1.88 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
935.88 1.64 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
937.52 2.4 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
939.92 2.16 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
942.08 1.92 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
944.0 1.92 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
945.92 1.16 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
947.08 4.64 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
951.72 3.68 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
955.4 10.84 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
|
115
segments/aomovie/locations_run-5_events.tsv
Normal file
115
segments/aomovie/locations_run-5_events.tsv
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
6.2 8.68 Washington D.C. protester's camp protester's camp ext ++ night
|
||||
14.88 6.44 Washington D.C. Black Panther's HQ Black Panther's HQ int ++ night
|
||||
21.32 45.92 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
67.24 3.72 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
70.96 2.04 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
73.0 0.68 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
73.68 1.08 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
74.76 5.64 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
80.4 1.2 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
81.6 0.48 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
82.08 0.64 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
82.72 0.68 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
83.4 0.56 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
83.96 1.52 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
85.48 1.2 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
86.68 2.44 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
89.12 1.28 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
90.4 1.2 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
91.6 16.52 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
108.12 2.64 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
110.76 9.88 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
120.64 1.6 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
122.24 3.56 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
125.8 2.6 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
128.4 51.48 Washington D.C. White House front of White House ext + night
|
||||
179.88 2.28 United States flashback highway flashback highway ext - day
|
||||
182.16 2.36 United States flashback highway flashback highway ext 0 day
|
||||
184.52 7.24 United States hippie camp turn on tune in drop out ext ++ night
|
||||
191.76 8.72 Hollywood Walk of Fame in front of cinema ext ++ day
|
||||
200.48 2.24 Hollywood Walk of Fame in front of cinema ext 0 day
|
||||
202.72 1.44 Hollywood Walk of Fame in front of cinema ext 0 day
|
||||
204.16 1.36 Hollywood Walk of Fame in front of cinema ext 0 day
|
||||
205.52 7.72 Washington D.C. Tidal Basin with Jefferson Memorial Tidal Basin with Jefferson Memorial ext ++ day
|
||||
213.24 20.6 Washington D.C. bus stop bus stop ext + day
|
||||
233.84 11.84 Washington D.C. bus stop bus stop ext 0 day
|
||||
245.68 14.52 Washington D.C. bus stop bus stop ext 0 day
|
||||
260.2 12.4 Washington D.C. bus stop bus stop ext 0 day
|
||||
272.6 5.64 Washington D.C. bus stop bus stop ext 0 day
|
||||
278.24 6.56 Washington D.C. bus stop bus stop ext 0 day
|
||||
284.8 3.04 Washington D.C. bus stop bus stop ext 0 day
|
||||
287.84 3.52 Washington D.C. bus stop bus stop ext 0 day
|
||||
291.36 4.84 Washington D.C. bus stop bus stop ext 0 day
|
||||
296.2 3.52 Washington D.C. bus stop bus stop ext 0 day
|
||||
299.72 8.12 Washington D.C. bus stop bus stop ext 0 day
|
||||
307.84 1.4 Washington D.C. bus stop bus stop ext 0 day
|
||||
309.24 1.36 Washington D.C. bus stop bus stop ext 0 day
|
||||
310.6 1.28 Washington D.C. bus stop bus stop ext 0 day
|
||||
311.88 1.96 Washington D.C. bus stop bus stop ext 0 day
|
||||
313.84 1.36 Washington D.C. bus stop bus stop ext 0 day
|
||||
315.2 1.12 Washington D.C. bus stop bus stop ext 0 day
|
||||
316.32 5.4 Washington D.C. bus stop bus stop ext 0 day
|
||||
321.72 0.88 Washington D.C. bus stop bus stop ext 0 day
|
||||
322.6 1.48 Washington D.C. bus stop bus stop ext 0 day
|
||||
324.08 1.56 Washington D.C. bus stop bus stop ext 0 day
|
||||
325.64 2.4 Washington D.C. bus stop bus stop ext 0 day
|
||||
328.04 4.84 Washington D.C. bus stop bus stop ext 0 day
|
||||
332.88 6.72 Washington D.C. bus stop bus stop ext 0 day
|
||||
339.6 26.6 United States veteran's hospital veteran's hospital lounge int ++ day
|
||||
366.2 3.04 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
369.24 5.52 China Ping Pong Tournament inside stadium int - day
|
||||
374.76 3.2 China Ping Pong Tournament inside stadium int 0 day
|
||||
377.96 2.32 China Ping Pong Tournament inside stadium int 0 day
|
||||
380.28 5.56 China Ping Pong Tournament inside stadium int 0 day
|
||||
385.84 1.92 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
387.76 2.92 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
390.68 3.4 New York TV studio TV studio (broadcast) int - day
|
||||
394.08 8.36 New York TV studio TV studio (broadcast) int 0 day
|
||||
402.44 11.68 New York TV studio TV studio (broadcast) int 0 day
|
||||
414.12 6.24 New York TV studio TV studio (broadcast) int 0 day
|
||||
420.36 2.2 New York TV studio TV studio (broadcast) int 0 day
|
||||
422.56 6.12 New York TV studio TV studio (broadcast) int 0 day
|
||||
428.68 3.52 New York TV studio TV studio (broadcast) int 0 day
|
||||
432.2 16.2 New York TV studio TV studio (broadcast) int 0 day
|
||||
448.4 10.56 New York outside the TV studio outside the TV studio ext + day
|
||||
458.96 2.6 New York outside the TV studio outside the TV studio ext 0 day
|
||||
461.56 4.92 New York outside the TV studio outside the TV studio ext 0 day
|
||||
466.48 4.72 New York outside the TV studio outside the TV studio ext 0 day
|
||||
471.2 11.2 New York outside the TV studio outside the TV studio ext 0 day
|
||||
482.4 2.28 New York outside the TV studio outside the TV studio ext 0 day
|
||||
484.68 6.4 New York outside the TV studio outside the TV studio ext 0 day
|
||||
491.08 2.44 New York outside the TV studio outside the TV studio ext 0 day
|
||||
493.52 3.36 New York outside the TV studio outside the TV studio ext 0 day
|
||||
496.88 1.36 New York outside the TV studio outside the TV studio ext 0 day
|
||||
498.24 1.08 New York outside the TV studio outside the TV studio ext 0 day
|
||||
499.32 1.36 New York outside the TV studio outside the TV studio ext 0 day
|
||||
500.68 2.24 New York outside the TV studio outside the TV studio ext 0 day
|
||||
502.92 0.88 New York outside the TV studio outside the TV studio ext 0 day
|
||||
503.8 2.44 New York outside the TV studio outside the TV studio ext 0 day
|
||||
506.24 10.64 New York red light district red light district ext ++ night
|
||||
516.88 22.92 New York red light district red light district ext 0 night
|
||||
539.8 5.32 New York Dan's apartment Dan's apartment int + night
|
||||
545.12 6.72 New York Dan's apartment Dan's apartment int 0 night
|
||||
551.84 7.72 New York Dan's apartment Dan's apartment int 0 night
|
||||
559.56 3.2 New York Dan's apartment Dan's apartment int 0 night
|
||||
562.76 3.56 New York Dan's apartment Dan's apartment int 0 night
|
||||
566.32 5.6 New York Dan's apartment Dan's apartment int 0 night
|
||||
571.92 15.8 New York Dan's apartment Dan's apartment int 0 night
|
||||
587.72 3.36 New York Dan's apartment Dan's apartment int 0 night
|
||||
591.08 26.72 New York Dan's apartment Dan's apartment int 0 night
|
||||
617.8 5.24 New York Dan's apartment Dan's apartment int 0 night
|
||||
623.04 5.44 New York Dan's apartment Dan's apartment int 0 night
|
||||
628.48 7.28 New York Dan's apartment Dan's apartment int 0 night
|
||||
635.76 2.44 New York Dan's apartment Dan's apartment int 0 night
|
||||
638.2 1.68 New York Dan's apartment Dan's apartment int 0 night
|
||||
639.88 1.08 New York Dan's apartment Dan's apartment int 0 night
|
||||
640.96 96.92 New York bar in New York bar in New York int ++ night
|
||||
737.88 32.8 California apartment with mirrored wall apartment with mirrored wall int 0 night
|
||||
770.68 31.32 New York bar in New York bar in New York int 0 night
|
||||
802.0 4.64 Washington D.C. White House front of White House (broadcast) ext ++ day
|
||||
806.64 12.28 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
818.92 17.4 Washington D.C. White House unknown_2 (broadcast) int - day
|
||||
836.32 22.88 Washington D.C. Watergate Hotel room in Watergate Hotel int ++ night
|
||||
859.2 21.32 United States gymnasium gymnasium int ++ day
|
||||
880.52 35.2 United States gymnasium gymnasium int 0 day
|
||||
|
102
segments/aomovie/locations_run-6_events.tsv
Normal file
102
segments/aomovie/locations_run-6_events.tsv
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
7.64 16.12 Gump property Gump House front of Gump House ext ++ day
|
||||
23.76 3.56 Gump property Gump House front of Gump House ext 0 day
|
||||
27.32 36.72 Gump property Gump House corridor downstairs int 0 day
|
||||
64.04 10.64 Bayou La Batre Bubba's Home Bubba's Home ext ++ day
|
||||
74.68 4.36 Bayou La Batre Bubba's Home Bubba's Home ext + day
|
||||
79.04 2.24 Bayou La Batre Bubba's Home Bubba's Home ext 0 day
|
||||
81.28 1.84 Bayou La Batre Bubba's Home Bubba's Home ext 0 day
|
||||
83.12 3.48 Bayou La Batre Bubba's Grave Bubba's Grave ext + day
|
||||
86.6 4.8 Bayou La Batre Bubba's Grave Bubba's Grave ext 0 day
|
||||
91.4 16.92 Bayou La Batre Bubba's Grave Bubba's Grave ext 0 day
|
||||
108.32 9.12 Bayou La Batre harbor gangplank to ships ext + day
|
||||
117.44 6.96 Bayou La Batre harbor stall ext + day
|
||||
124.4 9.8 Bayou La Batre Bubba's Grave Bubba's Grave ext + day
|
||||
134.2 14.56 Bayou La Batre Bubba's Grave Bubba's Grave ext 0 day
|
||||
148.76 15.92 Bayou La Batre on the boat on the boat ext ++ day
|
||||
164.68 13.92 Bayou La Batre on the boat on the boat ext 0 day
|
||||
178.6 22.32 Bayou La Batre harbor landing stages ext ++ day
|
||||
200.92 7.84 Bayou La Batre harbor landing stages ext 0 day
|
||||
208.76 19.32 California Disco Disco int + night
|
||||
228.08 5.44 Bayou La Batre on the boat on the boat ext + day
|
||||
233.52 23.4 California apartment with balcony bedroom int + night
|
||||
256.92 5.08 California apartment with balcony bedroom int 0 night
|
||||
262.0 7.12 California apartment with balcony balcony ext 0 night
|
||||
269.12 12.56 California apartment with balcony balcony ext 0 night
|
||||
281.68 2.48 California apartment with balcony balcony ext 0 night
|
||||
284.16 3.56 California apartment with balcony balcony ext 0 night
|
||||
287.72 2.96 California apartment with balcony balcony ext 0 night
|
||||
290.68 1.76 California apartment with balcony balcony ext 0 night
|
||||
292.44 2.08 California apartment with balcony balcony ext 0 night
|
||||
294.52 1.36 California apartment with balcony balcony ext 0 night
|
||||
295.88 6.36 California apartment with balcony balcony ext 0 night
|
||||
302.24 18.08 California apartment with balcony balcony ext 0 night
|
||||
320.32 18.16 Bayou La Batre on the boat on the boat ext 0 night
|
||||
338.48 11.6 Bayou La Batre harbor jetty ext ++ day
|
||||
350.08 2.44 Bayou La Batre harbor jetty ext 0 day
|
||||
352.52 4.92 Bayou La Batre harbor jetty ext 0 day
|
||||
357.44 1.72 Bayou La Batre harbor jetty ext 0 day
|
||||
359.16 1.52 Bayou La Batre harbor jetty ext 0 day
|
||||
360.68 3.04 Bayou La Batre harbor jetty ext 0 day
|
||||
363.72 6.0 Bayou La Batre harbor jetty ext 0 day
|
||||
369.72 21.0 Bayou La Batre harbor jetty ext 0 day
|
||||
390.72 2.32 Bayou La Batre harbor jetty ext 0 day
|
||||
393.04 2.08 Bayou La Batre harbor jetty ext 0 day
|
||||
395.12 8.68 Bayou La Batre harbor jetty ext 0 day
|
||||
403.8 5.48 Bayou La Batre harbor jetty ext 0 day
|
||||
409.28 7.88 Bayou La Batre harbor jetty ext 0 day
|
||||
417.16 3.0 Bayou La Batre harbor jetty ext 0 day
|
||||
420.16 2.12 Bayou La Batre harbor jetty ext 0 day
|
||||
422.28 14.4 Bayou La Batre harbor jetty ext 0 day
|
||||
436.68 5.72 Bayou La Batre on the boat on the boat ext ++ day
|
||||
442.4 12.72 Bayou La Batre on the boat on the boat ext 0 day
|
||||
455.12 8.08 Bayou La Batre on the boat on the boat ext 0 day
|
||||
463.2 7.68 Bayou La Batre on the boat on the boat ext 0 day
|
||||
470.88 22.4 Bayou La Batre on the boat on the boat ext + day
|
||||
493.28 8.6 Bayou La Batre Foursquare Church Foursquare Church int ++ day
|
||||
501.88 7.0 Bayou La Batre Foursquare Church Foursquare Church int 0 day
|
||||
508.88 25.28 Bayou La Batre on the boat on the boat ext ++ day
|
||||
534.16 17.28 Bayou La Batre on the boat on the boat ext ++ day
|
||||
551.44 12.24 Bayou La Batre on the boat on the boat ext 0 day
|
||||
563.68 3.84 Bayou La Batre on the boat on the boat ext 0 day
|
||||
567.52 5.44 Bayou La Batre on the boat on the boat ext 0 day
|
||||
572.96 5.52 Bayou La Batre on the boat on the boat ext 0 day
|
||||
578.48 5.8 Bayou La Batre on the boat on the boat ext 0 day
|
||||
584.28 2.04 Gump property Gump House living room int ++ day
|
||||
586.32 7.56 Bayou La Batre harbor yet another jetty ext 0 day
|
||||
593.88 10.44 Gump property Gump House living room int 0 day
|
||||
604.32 2.44 Gump property Gump House living room int 0 day
|
||||
606.76 3.04 Gump property Gump House living room int 0 day
|
||||
609.8 1.28 Bayou La Batre on the boat on the boat ext ++ day
|
||||
611.08 1.44 Bayou La Batre on the boat on the boat ext ++ day
|
||||
612.52 6.88 Bayou La Batre on the boat on the boat ext ++ day
|
||||
619.4 18.96 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
638.36 4.6 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
642.96 18.08 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
661.04 3.52 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
664.56 17.12 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
681.68 1.92 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
683.6 2.88 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
686.48 1.72 Bayou La Batre on the boat on the boat ext - day
|
||||
688.2 2.6 Bayou La Batre on the boat on the boat ext 0 day
|
||||
690.8 6.32 Bayou La Batre on the boat on the boat ext 0 day
|
||||
697.12 1.36 Bayou La Batre on the boat on the boat ext 0 day
|
||||
698.48 2.64 Bayou La Batre on the boat on the boat ext 0 day
|
||||
701.12 1.28 Bayou La Batre on the boat on the boat ext 0 day
|
||||
702.4 10.4 Bayou La Batre on the boat on the boat ext 0 day
|
||||
712.8 4.88 Bayou La Batre on the boat on the boat ext 0 day
|
||||
717.68 9.88 Bayou La Batre on the boat on the boat ext 0 day
|
||||
727.56 29.92 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
757.48 4.6 Greenbow Alabama football field on the football field ext - day
|
||||
762.08 10.68 Gump property access-road at the mail boxes ext ++ day
|
||||
772.76 4.28 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
777.04 5.84 Bayou La Batre Foursquare Church Foursquare Church int - day
|
||||
782.88 9.36 Bayou La Batre Foursquare Church in front of Foursquare Church ext ++ day
|
||||
792.24 6.28 Bayou La Batre Gump Medical Center Gump Medical Center ext ++ day
|
||||
798.52 11.6 Bayou La Batre Bubba's Home Bubba's Home ext ++ day
|
||||
810.12 1.68 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
811.8 6.4 Bayou La Batre Bubba's mother's dining room Bubba's mother's dining room int - day
|
||||
818.2 8.72 Greenbow Alabama football field on the football field ext ++ day
|
||||
826.92 10.84 Gump property Gump House front of Gump House ext ++ night
|
||||
837.76 8.96 Gump property Gump House front of Gump House ext 0 night
|
||||
846.72 22.12 Gump property Gump House front of Gump House ext 0 night
|
||||
|
108
segments/aomovie/locations_run-7_events.tsv
Normal file
108
segments/aomovie/locations_run-7_events.tsv
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
6.76 18.92 Gump property Gump House garden ext + day
|
||||
25.68 13.72 Gump property Gump House front of Gump House ext 0 day
|
||||
39.4 5.72 Gump property Gump House garden ext 0 day
|
||||
45.12 2.76 Gump property Gump House garden ext 0 day
|
||||
47.88 9.4 Gump property Gump House garden ext 0 day
|
||||
57.28 2.24 Gump property Gump House garden ext 0 day
|
||||
59.52 2.32 Gump property Gump House garden ext 0 day
|
||||
61.84 5.12 Gump property Gump House garden ext 0 day
|
||||
66.96 2.04 Gump property Gump House garden ext 0 day
|
||||
69.0 3.0 Gump property Gump House garden ext 0 day
|
||||
72.0 3.12 Gump property Gump House garden ext 0 day
|
||||
75.12 5.36 Gump property Gump House garden ext 0 day
|
||||
80.48 7.08 Gump property Gump House garden ext 0 day
|
||||
87.56 15.92 Gump property Gump House Jenny's bedroom int ++ day
|
||||
103.48 17.88 Greenbow Alabama random meadow random meadow ext ++ day
|
||||
121.36 10.28 Greenbow Alabama tree on a field tree on a field ext ++ day
|
||||
131.64 7.4 Gump property Gump House unknown_1 int ++ day
|
||||
139.04 7.28 Gump property Gump House front of Gump House ext ++ day
|
||||
146.32 19.36 Gump property Gump House front of Gump House ext ++ day
|
||||
165.68 12.96 Greenbow Alabama riverside riverside ext ++ day
|
||||
178.64 27.56 Gump property Gump House living room int ++ night
|
||||
206.2 12.4 Gump property Gump House corridor downstairs int 0 night
|
||||
218.6 4.36 Gump property Gump House corridor downstairs int 0 night
|
||||
222.96 4.04 Gump property Gump House corridor downstairs int 0 night
|
||||
227.0 4.6 Gump property Gump House corridor downstairs int 0 night
|
||||
231.6 5.28 Gump property Gump House corridor downstairs int 0 night
|
||||
236.88 2.28 Gump property Gump House corridor downstairs int 0 night
|
||||
239.16 11.16 Gump property Gump House corridor downstairs int 0 night
|
||||
250.32 1.96 Gump property Gump House corridor downstairs int 0 night
|
||||
252.28 3.44 Gump property Gump House corridor downstairs int 0 night
|
||||
255.72 3.64 Gump property Gump House corridor downstairs int 0 night
|
||||
259.36 3.32 Gump property Gump House corridor downstairs int 0 night
|
||||
262.68 4.0 Gump property Gump House front of Gump House ext + night
|
||||
266.68 20.96 Gump property Gump House Forrest's bedroom int + night
|
||||
287.64 21.48 Gump property Gump House Forrest's bedroom int 0 night
|
||||
309.12 11.16 Gump property Gump House Forrest's bedroom int 0 night
|
||||
320.28 17.0 Gump property Gump House front of Gump House ext ++ day
|
||||
337.28 9.76 Gump property Gump House front of Gump House ext 0 day
|
||||
347.04 17.16 Gump property Gump House Forrest's bedroom int 0 day
|
||||
364.2 13.48 Gump property Gump House unknown_2 int ++ day
|
||||
377.68 8.64 Gump property Gump House Jenny's bedroom int ++ day
|
||||
386.32 8.32 Gump property Gump House living room int ++ day
|
||||
394.64 19.4 Gump property Gump House front of Gump House ext ++ day
|
||||
414.04 16.32 Gump property Gump House front of Gump House ext 0 day
|
||||
430.36 6.56 Gump property access-road alley to Gump House ext 0 day
|
||||
436.92 6.64 Gump property access-road at the mail boxes ext + day
|
||||
443.56 4.6 Greenbow Alabama main street in the barbershop int + day
|
||||
448.16 8.32 Greenbow Alabama road with bridge road with bridge ext + day
|
||||
456.48 5.6 Mississippi road with Mississippi sign road with Mississippi sign ext ++ day
|
||||
462.08 6.36 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
468.44 4.2 Santa Monica yacht harbor yacht harbor ext - day
|
||||
472.64 9.72 Santa Monica yacht harbor yacht harbor's jetty ext + day
|
||||
482.36 11.52 Atlantic Ocean beacon beacon ext ++ day
|
||||
493.88 5.36 Atlantic Ocean beacon beacon ext 0 day
|
||||
499.24 5.64 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
504.88 3.28 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
508.16 3.04 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
511.2 9.4 United States road at a river road at a river ext - day
|
||||
520.6 6.92 United States road between wheat fields road between wheat fields ext ++ day
|
||||
527.52 7.48 Rocky Mountains stone bridge stone bridge ext ++ day
|
||||
535.0 6.92 United States road between fences road between fences ext ++ day
|
||||
541.92 10.04 United States autumn forrest autumn forrest with houses ext ++ day
|
||||
551.96 6.04 United States autumn forrest road trough autumn forrest ext + day
|
||||
558.0 6.28 Greenbow Alabama main street in the barbershop int + day
|
||||
564.28 2.24 Greenbow Alabama main street in the barbershop int + day
|
||||
566.52 13.44 Savannah restaurant restaurant int + day
|
||||
579.96 16.64 Mississippi bridge at mississippi river bridge at mississippi river ext 0 day
|
||||
596.6 1.64 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
598.24 4.48 United States street with houses street with houses ext - day
|
||||
602.72 5.36 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
608.08 12.04 United States street with houses street with houses ext - day
|
||||
620.12 5.36 United States street in mountains street in mountains ext ++ day
|
||||
625.48 5.52 United States street in desert street in desert ext ++ day
|
||||
631.0 6.8 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
637.8 32.04 United States street with sidewalk street with sidewalk ext - day
|
||||
669.84 3.2 United States street with crashing cars street with crashing cars ext ++ day
|
||||
673.04 21.36 United States truck stop truck stop ext - day
|
||||
694.4 4.96 United States truck stop truck stop ext 0 day
|
||||
699.36 3.92 United States truck stop truck stop ext 0 day
|
||||
703.28 32.6 Monument Valley road through Monument Valley road through Monument Valley ext ++ day
|
||||
735.88 9.76 Monument Valley road through Monument Valley road through Monument Valley ext 0 day
|
||||
745.64 18.76 Monument Valley road through Monument Valley road through Monument Valley ext 0 day
|
||||
764.4 27.92 Monument Valley road through Monument Valley road through Monument Valley ext 0 day
|
||||
792.32 6.44 Washington D.C. Hilton Hotel Ronald Reagon (broadcast) ext ++ day
|
||||
798.76 12.56 Gump property Gump House living room int 0 day
|
||||
811.32 36.32 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
847.64 10.12 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
857.76 2.2 Savannah Jenny's apartment Jenny's apartment's front door int + day
|
||||
859.96 3.12 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
863.08 1.72 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
864.8 21.32 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
886.12 3.76 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
889.88 5.8 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
895.68 7.48 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
903.16 39.04 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
942.2 3.4 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
945.6 11.0 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
956.6 3.12 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
959.72 1.84 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
961.56 7.44 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
969.0 27.64 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
996.64 4.2 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1000.84 12.0 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1012.84 4.12 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1016.96 31.76 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1048.72 14.76 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1063.48 6.08 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
|
78
segments/aomovie/locations_run-8_events.tsv
Normal file
78
segments/aomovie/locations_run-8_events.tsv
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
1.48 6.12 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
7.6 23.64 Savannah park with playground park with playground ext + day
|
||||
31.24 20.64 Savannah park with playground park with playground ext 0 day
|
||||
51.88 4.16 Savannah park with playground park with playground ext 0 day
|
||||
56.04 7.56 Savannah park with playground park with playground ext 0 day
|
||||
63.6 37.96 Gump property Gump House front of Gump House ext ++ day
|
||||
101.56 3.72 Gump property Gump House front of Gump House ext 0 day
|
||||
105.28 2.28 Gump property Gump House front of Gump House ext 0 day
|
||||
107.56 3.16 Gump property Gump House front of Gump House ext 0 day
|
||||
110.72 4.4 Gump property Gump House front of Gump House ext 0 day
|
||||
115.12 8.2 Gump property Gump House front of Gump House ext 0 day
|
||||
123.32 2.56 Gump property Gump House front of Gump House ext 0 day
|
||||
125.88 7.44 Gump property Gump House front of Gump House ext 0 day
|
||||
133.32 7.52 Gump property Gump House front of Gump House ext 0 day
|
||||
140.84 3.12 Gump property Gump House front of Gump House ext 0 day
|
||||
143.96 6.12 Gump property Gump House front of Gump House ext 0 day
|
||||
150.08 4.8 Gump property Gump House front of Gump House ext 0 day
|
||||
154.88 2.08 Gump property Gump House front of Gump House ext 0 day
|
||||
156.96 8.24 Gump property Gump House front of Gump House ext 0 day
|
||||
165.2 4.4 Gump property Gump House front of Gump House ext 0 day
|
||||
169.6 2.04 Gump property Gump House front of Gump House ext 0 day
|
||||
171.64 2.36 Gump property Gump House front of Gump House ext 0 day
|
||||
174.0 14.96 Gump property Gump House garden ext + day
|
||||
188.96 14.24 Gump property access-road alley to Gump House ext ++ day
|
||||
203.2 8.76 Gump property Gump House Forrest's mother's bedroom int ++ day
|
||||
211.96 7.12 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
219.08 2.88 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
221.96 19.68 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
241.64 6.68 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
248.32 11.64 Vietnam yet another jungle yet another jungle ext - night
|
||||
259.96 1.48 Gump property Gump House Forrest's mother's bedroom int ++ day
|
||||
261.44 4.4 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
265.84 8.4 Bayou La Batre on the boat on the boat ext - day
|
||||
274.24 8.28 Rocky Mountains street at a lake street at a lake ext ++ day
|
||||
282.52 3.32 Gump property Gump House Forrest's mother's bedroom int ++ day
|
||||
285.84 12.72 Monument Valley road through Monument Valley road through Monument Valley ext - day
|
||||
298.56 2.84 Gump property Gump House Forrest's mother's bedroom int ++ day
|
||||
301.4 3.96 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
305.36 5.04 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
310.4 3.44 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
313.84 3.08 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
316.92 2.2 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
319.12 2.72 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
321.84 6.92 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
328.76 6.92 Greenbow Alabama tree on a field Jenny's Grave ext ++ day
|
||||
335.68 8.56 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
344.24 5.24 Greenbow Alabama Jenny's house front of Jenny's house ext - day
|
||||
349.48 5.96 Greenbow Alabama tree on a field Jenny's Grave ext ++ day
|
||||
355.44 5.36 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
360.8 7.0 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
367.8 8.56 Gump property Gump House Forrest's bedroom int - night
|
||||
376.36 13.76 Greenbow Alabama tree on a field Jenny's Grave ext ++ day
|
||||
390.12 6.72 Gump property Gump House front of Gump House ext - night
|
||||
396.84 6.32 Greenbow Alabama riverside riverside ext ++ day
|
||||
403.16 25.48 Greenbow Alabama tree on a field Jenny's Grave ext ++ day
|
||||
428.64 4.88 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
433.52 11.52 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
445.04 63.76 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
508.8 25.6 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
534.4 7.32 Gump property access-road at the mail boxes ext ++ day
|
||||
541.72 9.4 Gump property access-road at the mail boxes ext 0 day
|
||||
551.12 4.12 Gump property access-road at the mail boxes ext 0 day
|
||||
555.24 2.64 Gump property access-road at the mail boxes ext 0 day
|
||||
557.88 6.36 Gump property access-road at the mail boxes ext 0 day
|
||||
564.24 3.08 Gump property access-road at the mail boxes ext 0 day
|
||||
567.32 1.56 Gump property access-road at the mail boxes ext 0 day
|
||||
568.88 1.52 Gump property access-road at the mail boxes ext 0 day
|
||||
570.4 5.08 Gump property access-road at the mail boxes ext 0 day
|
||||
575.48 1.96 Gump property access-road at the mail boxes ext 0 day
|
||||
577.44 3.84 Gump property access-road at the mail boxes ext 0 day
|
||||
581.28 1.4 Gump property access-road at the mail boxes ext 0 day
|
||||
582.68 11.2 Gump property access-road at the mail boxes ext 0 day
|
||||
593.88 1.56 Gump property access-road at the mail boxes ext 0 day
|
||||
595.44 2.12 Gump property access-road at the mail boxes ext 0 day
|
||||
597.56 5.0 Gump property access-road at the mail boxes ext 0 day
|
||||
602.56 9.0 Gump property access-road at the mail boxes ext 0 day
|
||||
611.56 60.2 Gump property access-road at the mail boxes ext 0 day
|
||||
|
85
segments/avmovie/locations_run-1_events.tsv
Normal file
85
segments/avmovie/locations_run-1_events.tsv
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
0.0 17.0 Paramount mountain logo mountain logo ext 0 day
|
||||
17.0 151.08 Savannah sky over Savannah sky over Savannah ext ++ day
|
||||
168.08 104.12 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
272.2 14.12 Greenbow Alabama doctor's office doctor's office int - day
|
||||
286.32 14.24 Greenbow Alabama doctor's office doctor's office int 0 day
|
||||
300.56 11.4 Greenbow Alabama doctor's office doctor's office int 0 day
|
||||
311.96 6.32 Greenbow Alabama main street crossroads ext + day
|
||||
318.28 24.76 United States flashback countryside flashback countryside ext - day
|
||||
343.04 10.04 Greenbow Alabama main street in front of barbershop ext ++ day
|
||||
353.08 5.0 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
358.08 1.96 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
360.04 1.8 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
361.84 1.2 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
363.04 22.6 Greenbow Alabama main street in front of barbershop ext 0 day
|
||||
385.64 17.16 Gump property access-road at the mail boxes ext + day
|
||||
402.8 22.8 Gump property access-road alley to Gump House ext + day
|
||||
425.6 8.88 Gump property Gump House front of Gump House ext 0 day
|
||||
434.48 4.08 Greenbow Alabama school Hancock's office int ++ day
|
||||
438.56 4.88 Greenbow Alabama school Hancock's office int 0 day
|
||||
443.44 4.32 Greenbow Alabama school Hancock's office int 0 day
|
||||
447.76 14.68 Greenbow Alabama school school hallway int 0 day
|
||||
462.44 4.4 Greenbow Alabama school Hancock's office int 0 day
|
||||
466.84 4.52 Greenbow Alabama school Hancock's office int 0 day
|
||||
471.36 4.16 Greenbow Alabama school Hancock's office int 0 day
|
||||
475.52 17.16 Greenbow Alabama school Hancock's office int 0 day
|
||||
492.68 3.4 Greenbow Alabama school Hancock's office int 0 day
|
||||
496.08 4.08 Greenbow Alabama school Hancock's office int 0 day
|
||||
500.16 7.52 Greenbow Alabama school school hallway int 0 day
|
||||
507.68 4.64 Greenbow Alabama school Hancock's office int 0 day
|
||||
512.32 4.56 Greenbow Alabama school Hancock's office int 0 day
|
||||
516.88 5.36 Gump property Gump House front of Gump House ext ++ night
|
||||
522.24 4.52 Gump property Gump House front of Gump House ext 0 night
|
||||
526.76 28.96 Gump property Gump House front of Gump House ext + night
|
||||
555.72 30.76 Gump property Gump House Forrest's bedroom int + night
|
||||
586.48 8.36 Gump property Gump House front of Gump House ext ++ day
|
||||
594.84 17.24 Gump property Gump House corridor downstairs int 0 day
|
||||
612.08 18.32 Gump property Gump House corridor upstairs int + day
|
||||
630.4 2.08 Gump property Gump House Jenny's bedroom int 0 day
|
||||
632.48 1.16 Gump property Gump House Jenny's bedroom int 0 day
|
||||
633.64 2.72 Gump property Gump House Jenny's bedroom int 0 day
|
||||
636.36 20.52 Gump property Gump House Jenny's bedroom int 0 day
|
||||
656.88 2.56 Gump property Gump House Jenny's bedroom int 0 day
|
||||
659.44 10.12 Gump property Gump House Jenny's bedroom int 0 day
|
||||
669.56 5.44 Greenbow Alabama main street in front of electronic store ext ++ night
|
||||
675.0 4.8 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
679.8 1.76 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
681.56 4.64 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
686.2 6.32 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
692.52 10.04 Greenbow Alabama main street in front of electronic store ext 0 night
|
||||
702.56 10.12 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
712.68 8.68 Gump property access-road at the mail boxes ext - day
|
||||
721.36 6.08 Gump property access-road at the mail boxes ext 0 day
|
||||
727.44 2.64 Gump property access-road at the mail boxes ext 0 day
|
||||
730.08 2.8 Gump property access-road at the mail boxes ext 0 day
|
||||
732.88 5.56 Gump property access-road at the mail boxes ext 0 day
|
||||
738.44 2.24 Gump property access-road at the mail boxes ext 0 day
|
||||
740.68 2.4 Gump property access-road at the mail boxes ext 0 day
|
||||
743.08 2.08 Gump property access-road at the mail boxes ext 0 day
|
||||
745.16 7.08 Gump property access-road at the mail boxes ext 0 day
|
||||
752.24 3.0 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
755.24 2.64 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
757.88 1.44 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
759.32 1.32 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
760.64 1.0 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
761.64 8.6 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
770.24 1.04 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
771.28 7.24 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
778.52 12.52 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
791.04 8.52 Greenbow Alabama school bus inside driving bus int - day
|
||||
799.56 2.2 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
801.76 4.52 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
806.28 1.72 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
808.0 5.44 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
813.44 15.88 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
829.32 4.16 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
833.48 3.48 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
836.96 2.92 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
839.88 7.44 Greenbow Alabama school bus inside driving bus int 0 day
|
||||
847.32 4.8 Greenbow Alabama tree on a field tree on a field ext ++ day
|
||||
852.12 5.08 Greenbow Alabama tree on a field tree on a field ext + day
|
||||
857.2 3.96 Greenbow Alabama tree on a field tree on a field ext ++ day
|
||||
861.16 4.04 Greenbow Alabama tree on a field tree on a field ext + day
|
||||
865.2 7.12 Greenbow Alabama tree on a field tree on a field ext ++ day
|
||||
872.32 13.76 Greenbow Alabama tree on a field tree on a field ext 0 day
|
||||
|
156
segments/avmovie/locations_run-2_events.tsv
Normal file
156
segments/avmovie/locations_run-2_events.tsv
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
0.08 5.08 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
5.16 8.64 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
13.8 2.0 Gump property access-road alley to Gump House ext - day
|
||||
15.8 1.16 Gump property access-road alley to Gump House ext 0 day
|
||||
16.96 1.92 Gump property access-road alley to Gump House ext 0 day
|
||||
18.88 1.12 Gump property access-road alley to Gump House ext 0 day
|
||||
20.0 1.96 Gump property access-road alley to Gump House ext 0 day
|
||||
21.96 1.08 Gump property access-road alley to Gump House ext 0 day
|
||||
23.04 1.44 Gump property access-road alley to Gump House ext 0 day
|
||||
24.48 0.8 Gump property access-road alley to Gump House ext 0 day
|
||||
25.28 1.44 Gump property access-road alley to Gump House ext 0 day
|
||||
26.72 2.08 Gump property access-road alley to Gump House ext 0 day
|
||||
28.8 1.6 Gump property access-road alley to Gump House ext 0 day
|
||||
30.4 3.56 Gump property access-road alley to Gump House ext 0 day
|
||||
33.96 4.92 Gump property access-road alley to Gump House ext 0 day
|
||||
38.88 3.28 Gump property access-road alley to Gump House ext 0 day
|
||||
42.16 3.0 Gump property access-road alley to Gump House ext 0 day
|
||||
45.16 1.4 Gump property access-road alley to Gump House ext 0 day
|
||||
46.56 1.36 Gump property access-road alley to Gump House ext 0 day
|
||||
47.92 1.64 Gump property access-road alley to Gump House ext 0 day
|
||||
49.56 1.76 Gump property access-road alley to Gump House ext 0 day
|
||||
51.32 6.0 Gump property access-road alley to Gump House ext 0 day
|
||||
57.32 2.32 Gump property access-road alley to Gump House ext 0 day
|
||||
59.64 2.52 Gump property access-road alley to Gump House ext 0 day
|
||||
62.16 2.92 Gump property access-road alley to Gump House ext 0 day
|
||||
65.08 2.76 Gump property access-road alley to Gump House ext 0 day
|
||||
67.84 5.76 Gump property access-road alley to Gump House ext 0 day
|
||||
73.6 1.84 Gump property access-road alley to Gump House ext 0 day
|
||||
75.44 1.8 Gump property access-road alley to Gump House ext 0 day
|
||||
77.24 1.64 Gump property access-road alley to Gump House ext 0 day
|
||||
78.88 3.84 Gump property access-road alley to Gump House ext 0 day
|
||||
82.72 3.84 Gump property access-road alley to Gump House ext 0 day
|
||||
86.56 2.52 Gump property access-road alley to Gump House ext 0 day
|
||||
89.08 4.92 Gump property access-road alley to Gump House ext 0 day
|
||||
94.0 3.28 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
97.28 1.6 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
98.88 6.36 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
105.24 9.36 Gump property access-road alley to Gump House ext - day
|
||||
114.6 8.36 Gump property access-road meadow near Gump House ext 0 day
|
||||
122.96 6.52 Greenbow Alabama road with bridge road with bridge ext + day
|
||||
129.48 3.24 Greenbow Alabama road between trees road between trees ext + day
|
||||
132.72 8.04 Greenbow Alabama main street in front of barbershop ext + day
|
||||
140.76 13.52 Greenbow Alabama Jenny's house front of Jenny's house ext + day
|
||||
154.28 20.92 Greenbow Alabama Jenny's house front of Jenny's house ext 0 day
|
||||
175.2 11.72 Greenbow Alabama Jenny's house front of Jenny's house ext 0 day
|
||||
186.92 2.04 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
188.96 3.68 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
192.64 4.68 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
197.32 1.4 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
198.72 2.12 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
200.84 7.84 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
208.68 15.6 Greenbow Alabama Jenny's house field near Jenny's house ext 0 day
|
||||
224.28 13.6 Greenbow Alabama Jenny's grandma's trailer Jenny's grandma's trailer ext ++ day
|
||||
237.88 11.92 Gump property Gump House front of Gump House ext ++ night
|
||||
249.8 8.6 Gump property Gump House Forrest's bedroom int + night
|
||||
258.4 4.96 Gump property access-road alley to Gump House ext ++ day
|
||||
263.36 0.84 Gump property access-road alley to Gump House ext 0 day
|
||||
264.2 2.84 Gump property access-road alley to Gump House ext 0 day
|
||||
267.04 1.32 Gump property access-road alley to Gump House ext 0 day
|
||||
268.36 0.72 Gump property access-road alley to Gump House ext 0 day
|
||||
269.08 2.28 Gump property access-road alley to Gump House ext 0 day
|
||||
271.36 3.28 Gump property access-road alley to Gump House ext 0 day
|
||||
274.64 1.36 Gump property access-road alley to Gump House ext 0 day
|
||||
276.0 1.16 Gump property access-road alley to Gump House ext 0 day
|
||||
277.16 0.92 Gump property access-road alley to Gump House ext 0 day
|
||||
278.08 0.96 Gump property access-road alley to Gump House ext 0 day
|
||||
279.04 1.32 Gump property access-road alley to Gump House ext 0 day
|
||||
280.36 1.28 Gump property access-road alley to Gump House ext 0 day
|
||||
281.64 2.16 Gump property access-road alley to Gump House ext 0 day
|
||||
283.8 1.84 Gump property access-road alley to Gump House ext 0 day
|
||||
285.64 1.36 Gump property access-road inside the pursuing car int 0 day
|
||||
287.0 1.44 Gump property access-road alley to Gump House ext 0 day
|
||||
288.44 1.04 Gump property access-road alley to Gump House ext 0 day
|
||||
289.48 2.32 Gump property access-road alley to Gump House ext 0 day
|
||||
291.8 0.88 Gump property access-road alley to Gump House ext 0 day
|
||||
292.68 1.72 Gump property access-road alley to Gump House ext 0 day
|
||||
294.4 9.16 Gump property access-road alley to Gump House ext 0 day
|
||||
303.56 2.56 Gump property access-road alley to Gump House ext 0 day
|
||||
306.12 1.88 Gump property access-road meadow near Gump House ext 0 day
|
||||
308.0 7.8 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
315.8 8.96 Greenbow Alabama football field road next to football field ext - day
|
||||
324.76 7.48 Greenbow Alabama football field road next to football field ext 0 day
|
||||
332.24 0.88 Greenbow Alabama football field stands ext 0 day
|
||||
333.12 0.84 Greenbow Alabama football field on the football field ext 0 day
|
||||
333.96 2.52 Greenbow Alabama football field stands ext 0 day
|
||||
336.48 4.2 Greenbow Alabama football field on the football field ext 0 day
|
||||
340.68 4.44 Greenbow Alabama football field stands ext 0 day
|
||||
345.12 1.72 Greenbow Alabama football field stands ext 0 day
|
||||
346.84 3.04 Greenbow Alabama football field stands ext 0 day
|
||||
349.88 5.16 Greenbow Alabama football field on the football field ext 0 day
|
||||
355.04 0.88 University of Alabama football stadium football field in stadium ext ++ day
|
||||
355.92 2.92 University of Alabama football stadium stands ext 0 day
|
||||
358.84 6.0 University of Alabama football stadium football field in stadium ext 0 day
|
||||
364.84 2.88 University of Alabama football stadium technical area ext 0 day
|
||||
367.72 4.68 University of Alabama football stadium football field in stadium ext 0 day
|
||||
372.4 2.88 University of Alabama football stadium football field in stadium ext 0 day
|
||||
375.28 4.6 University of Alabama football stadium stands ext 0 day
|
||||
379.88 2.96 University of Alabama football stadium technical area ext 0 day
|
||||
382.84 1.92 University of Alabama football stadium football field in stadium ext 0 day
|
||||
384.76 2.76 University of Alabama football stadium football field in stadium ext 0 day
|
||||
387.52 3.56 University of Alabama football stadium football field in stadium ext 0 day
|
||||
391.08 2.2 University of Alabama football stadium football field in stadium ext 0 day
|
||||
393.28 5.0 University of Alabama football stadium end zone ext 0 day
|
||||
398.28 8.28 University of Alabama football stadium technical area ext 0 day
|
||||
406.56 5.28 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext ++ night
|
||||
411.84 2.8 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
414.64 2.24 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
416.88 3.36 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
420.24 4.56 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
424.8 3.64 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
428.44 5.4 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
433.84 3.36 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
437.2 0.96 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
438.16 5.4 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
443.56 55.24 University of Alabama Margaret Mitchell Hall Margaret Mitchell Hall ext 0 night
|
||||
498.8 12.92 University of Alabama girl's dormitory corrridor int + night
|
||||
511.72 42.36 University of Alabama girl's dormitory Jenny's room int + night
|
||||
554.08 6.84 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
560.92 5.68 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
566.6 5.16 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
571.76 24.84 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
596.6 9.36 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
605.96 23.48 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
629.44 9.84 University of Alabama girl's dormitory Jenny's room int 0 night
|
||||
639.28 3.32 University of Alabama football stadium stands ext ++ day
|
||||
642.6 3.36 University of Alabama football stadium football field in stadium ext 0 day
|
||||
645.96 1.36 University of Alabama football stadium end zone ext 0 day
|
||||
647.32 1.36 University of Alabama football stadium football field in stadium ext 0 day
|
||||
648.68 5.48 University of Alabama football stadium end zone ext 0 day
|
||||
654.16 5.04 University of Alabama football stadium end zone ext 0 day
|
||||
659.2 4.4 Washington D.C. White House front of White House (broadcast) ext ++ day
|
||||
663.6 6.8 Washington D.C. White House unknown_1 (broadcast) int 0 day
|
||||
670.4 19.84 Washington D.C. White House room with buffet int + day
|
||||
690.24 3.8 Washington D.C. White House room with buffet int + day
|
||||
694.04 8.36 Washington D.C. White House Oval Office (broadcast) int + day
|
||||
702.4 5.92 Washington D.C. White House Oval Office (broadcast) int 0 day
|
||||
708.32 4.88 Washington D.C. White House Oval Office (broadcast) int 0 day
|
||||
713.2 19.88 Washington D.C. White House president's bathroom int + day
|
||||
733.08 4.2 Dallas downtown Dallas Dealey Plaza (broadcast) ext ++ day
|
||||
737.28 4.72 Los Angeles Ambassador Hotel ballroom (broadcast) int ++ day
|
||||
742.0 6.12 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
748.12 9.28 University of Alabama college graduation stage and audience ext - day
|
||||
757.4 2.12 University of Alabama college graduation stage and audience ext 0 day
|
||||
759.52 13.0 University of Alabama college graduation in front of statue ext + day
|
||||
772.52 2.64 University of Alabama college graduation in front of statue ext 0 day
|
||||
775.16 6.32 United States army bus inside army bus int ++ day
|
||||
781.48 14.36 United States army bus inside army bus int 0 day
|
||||
795.84 1.92 United States army bus inside army bus int 0 day
|
||||
797.76 2.04 United States army bus inside army bus int 0 day
|
||||
799.8 4.32 United States army bus inside army bus int 0 day
|
||||
804.12 2.36 United States army bus inside army bus int 0 day
|
||||
806.48 42.96 United States army bus inside army bus int 0 day
|
||||
849.44 4.08 Bayou La Batre fine house fine house's dining room int - day
|
||||
853.52 5.28 Bayou La Batre fine house fine house's dining room int - day
|
||||
858.8 14.32 United States army bus inside army bus int ++ day
|
||||
|
95
segments/avmovie/locations_run-3_events.tsv
Normal file
95
segments/avmovie/locations_run-3_events.tsv
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
7.04 37.28 United States barracks dormitory int ++ day
|
||||
44.32 49.12 United States barracks dormitory int ++ day
|
||||
93.44 10.84 United States barracks dormitory int ++ day
|
||||
104.28 15.44 United States barracks dormitory int ++ day
|
||||
119.72 4.8 United States barracks dormitory int ++ night
|
||||
124.52 21.8 United States barracks dormitory int 0 night
|
||||
146.32 3.28 United States barracks dormitory int 0 night
|
||||
149.6 5.64 United States barracks dormitory int 0 night
|
||||
155.24 8.48 United States barracks dormitory int 0 night
|
||||
163.72 35.64 Memphis night club inside the night club int ++ night
|
||||
199.36 1.12 Memphis night club inside the night club int 0 night
|
||||
200.48 14.2 Memphis night club inside the night club int 0 night
|
||||
214.68 11.68 Memphis night club inside the night club int 0 night
|
||||
226.36 6.04 Memphis night club inside the night club int 0 night
|
||||
232.4 5.84 Memphis night club inside the night club int 0 night
|
||||
238.24 3.16 Memphis night club inside the night club int 0 night
|
||||
241.4 5.32 Memphis night club inside the night club int 0 night
|
||||
246.72 2.64 Memphis night club inside the night club int 0 night
|
||||
249.36 1.44 Memphis night club inside the night club int 0 night
|
||||
250.8 1.92 Memphis night club inside the night club int 0 night
|
||||
252.72 0.64 Memphis night club inside the night club int 0 night
|
||||
253.36 8.2 Memphis night club inside the night club int 0 night
|
||||
261.56 3.52 Memphis night club inside the night club int 0 night
|
||||
265.08 3.12 Memphis night club inside the night club int 0 night
|
||||
268.2 4.72 Memphis night club inside the night club int 0 night
|
||||
272.92 3.96 Memphis night club inside the night club int 0 night
|
||||
276.88 9.0 Memphis bridge near club bridge near club ext + night
|
||||
285.88 3.92 Memphis bridge near club bridge near club ext 0 night
|
||||
289.8 3.44 Memphis bridge near club bridge near club ext 0 night
|
||||
293.24 4.2 Memphis bridge near club bridge near club ext 0 night
|
||||
297.44 23.72 Memphis bridge near club bridge near club ext 0 night
|
||||
321.16 9.88 Memphis bridge near club bridge near club ext 0 night
|
||||
331.04 6.48 Memphis bridge near club bridge near club ext 0 night
|
||||
337.52 13.68 Memphis bridge near club bridge near club ext 0 night
|
||||
351.2 2.4 Memphis bridge near club bridge near club ext 0 night
|
||||
353.6 1.6 Memphis bridge near club bridge near club ext 0 night
|
||||
355.2 4.08 Memphis bridge near club bridge near club ext 0 night
|
||||
359.28 1.56 Memphis bridge near club bridge near club ext 0 night
|
||||
360.84 2.8 Memphis bridge near club bridge near club ext 0 night
|
||||
363.64 11.68 Memphis bridge near club bridge near club ext 0 night
|
||||
375.32 4.24 Memphis bridge near club bridge near club ext 0 night
|
||||
379.56 4.0 Memphis bridge near club bridge near club ext 0 night
|
||||
383.56 1.48 Memphis bridge near club bridge near club ext 0 night
|
||||
385.04 1.4 Memphis bridge near club bridge near club ext 0 night
|
||||
386.44 3.84 Memphis bridge near club bridge near club ext 0 night
|
||||
390.28 3.76 Memphis bridge near club bridge near club ext 0 night
|
||||
394.04 1.52 Memphis bridge near club bridge near club ext 0 night
|
||||
395.56 2.96 Memphis bridge near club bridge near club ext 0 night
|
||||
398.52 15.88 Vietnam Military Base helicopter ext ++ day
|
||||
414.4 26.68 Vietnam Military Base helicopter ext + day
|
||||
441.08 24.52 Vietnam Military Base barbecue near river ext 0 day
|
||||
465.6 39.16 Vietnam Military Base at Dan's tent ext 0 day
|
||||
504.76 4.64 Vietnam Military Base at Dan's tent ext 0 day
|
||||
509.4 4.56 Vietnam Military Base at Dan's tent ext 0 day
|
||||
513.96 13.24 Vietnam Military Base at Dan's tent ext 0 day
|
||||
527.2 2.0 Vietnam Military Base at Dan's tent ext 0 day
|
||||
529.2 5.44 Vietnam Military Base at Dan's tent ext 0 day
|
||||
534.64 19.76 Vietnam Military Base at Dan's tent ext 0 day
|
||||
554.4 2.48 Vietnam Military Base at Dan's tent ext 0 day
|
||||
556.88 1.48 United States battlefield in Revolutionary War battlefield in Revolutionary War ext - day
|
||||
558.36 1.6 United States battlefield in American Zivil War battlefield in American Zivil War ext ++ day
|
||||
559.96 1.16 Europe battlefield in World War 1 battlefield in World War 1 ext ++ day
|
||||
561.12 2.08 Europe battlefield in World War 2 battlefield in World War 2 ext ++ day
|
||||
563.2 44.28 Vietnam Military Base at Dan's tent ext ++ day
|
||||
607.48 8.32 Vietnam rice field in front of mountains rice field in front of mountains ext ++ day
|
||||
615.8 7.48 Vietnam rice field in front of mountains rice field in front of mountains ext 0 day
|
||||
623.28 11.36 Vietnam road betweeen rice fields road betweeen rice fields ext ++ day
|
||||
634.64 9.96 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
644.6 2.04 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
646.64 7.16 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
653.8 15.28 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
669.08 1.88 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
670.96 8.04 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
679.0 3.2 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
682.2 7.0 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
689.2 1.6 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
690.8 3.04 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
693.84 1.52 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
695.36 1.6 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
696.96 2.16 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
699.12 4.12 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
703.24 5.68 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
708.92 2.84 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
711.76 13.04 Vietnam road betweeen rice fields road betweeen rice fields ext 0 day
|
||||
724.8 11.72 Vietnam field with NLF tunnel field with NLF tunnel ext ++ day
|
||||
736.52 10.6 Vietnam flooded rice field flooded rice field ext ++ day
|
||||
747.12 5.96 Vietnam foxhole in jungle foxhole in jungle ext ++ day
|
||||
753.08 3.8 Vietnam random rainy jungle random rainy jungle ext ++ day
|
||||
756.88 2.72 Vietnam rainy field rainy field ext ++ day
|
||||
759.6 5.04 Vietnam flooded jungle flooded jungle ext ++ day
|
||||
764.64 66.28 Vietnam rain-swept camp rain-swept camp ext ++ night
|
||||
830.92 17.84 Vietnam rain-swept camp rain-swept camp ext + night
|
||||
848.76 10.72 Greenbow Alabama Jenny's grandma's trailer Jenny's grandma's trailer ext 0 day
|
||||
859.48 7.2 Vietnam rain-swept camp rain-swept camp ext 0 night
|
||||
|
138
segments/avmovie/locations_run-4_events.tsv
Normal file
138
segments/avmovie/locations_run-4_events.tsv
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
6.6 41.56 Vietnam embattled jungle embattled embankment ext ++ day
|
||||
48.16 5.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
53.96 1.72 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
55.68 1.36 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
57.04 1.4 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
58.44 8.12 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
66.56 2.32 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
68.88 3.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
72.68 1.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
74.48 0.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
75.28 1.56 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
76.84 2.16 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
79.0 1.48 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
80.48 0.96 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
81.44 6.0 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
87.44 1.68 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
89.12 1.16 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
90.28 0.84 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
91.12 1.16 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
92.28 1.76 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
94.04 0.68 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
94.72 1.44 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
96.16 0.8 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
96.96 1.6 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
98.56 1.44 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
100.0 3.12 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
103.12 7.72 Vietnam embattled jungle embattled embankment ext 0 day
|
||||
110.84 3.92 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
114.76 8.24 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
123.0 8.84 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
131.84 17.76 Vietnam embattled jungle in front of embattled jungle ext 0 day
|
||||
149.6 4.8 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
154.4 13.92 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
168.32 1.8 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
170.12 1.08 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
171.2 6.12 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
177.32 1.72 Vietnam embattled jungle finding place of Tex ext 0 day
|
||||
179.04 6.44 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
185.48 10.8 Vietnam embattled jungle glade at river ext + day
|
||||
196.28 4.32 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
200.6 5.48 Vietnam embattled jungle glade at river ext + day
|
||||
206.08 2.88 Vietnam embattled jungle finding place of Dallas ext + day
|
||||
208.96 2.16 Vietnam embattled jungle glade at river ext + day
|
||||
211.12 2.92 Vietnam embattled jungle glade at river ext 0 day
|
||||
214.04 4.72 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
218.76 25.32 Vietnam embattled jungle finding place of Dan ext 0 day
|
||||
244.08 9.16 Vietnam embattled jungle finding place of Dan ext 0 day
|
||||
253.24 6.2 Vietnam embattled jungle glade in embattled jungle ext + day
|
||||
259.44 4.64 Vietnam embattled jungle glade in embattled jungle ext 0 day
|
||||
264.08 1.68 Vietnam embattled jungle glade in embattled jungle ext 0 day
|
||||
265.76 3.32 Vietnam embattled jungle glade in embattled jungle ext 0 day
|
||||
269.08 2.68 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
271.76 5.12 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
276.88 7.2 Vietnam embattled jungle in front of embattled jungle ext 0 day
|
||||
284.08 4.84 Vietnam embattled jungle glade at river ext 0 day
|
||||
288.92 7.12 Vietnam embattled jungle glade at river ext 0 day
|
||||
296.04 6.04 Vietnam embattled jungle glade at river ext 0 day
|
||||
302.08 7.28 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
309.36 8.4 Vietnam embattled jungle finding place of Bubba ext 0 day
|
||||
317.76 8.2 Vietnam embattled jungle finding place of Bubba ext 0 day
|
||||
325.96 1.84 Vietnam embattled jungle finding place of Bubba ext 0 day
|
||||
327.8 25.08 Vietnam embattled jungle finding place of Bubba ext 0 day
|
||||
352.88 5.44 Vietnam embattled jungle in the embattled jungle ext + day
|
||||
358.32 6.24 Vietnam embattled jungle in the embattled jungle ext 0 day
|
||||
364.56 25.08 Vietnam embattled jungle in front of embattled jungle ext 0 day
|
||||
389.64 11.32 Vietnam embattled jungle glade at river ext + day
|
||||
400.96 14.72 Vietnam embattled jungle glade at river ext 0 day
|
||||
415.68 13.6 Vietnam embattled jungle glade at river ext 0 day
|
||||
429.28 18.36 Vietnam embattled jungle glade at river ext 0 day
|
||||
447.64 13.92 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
461.56 20.2 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
481.76 31.72 Vietnam hospital dormitory hospital dormitory int - day
|
||||
513.48 15.04 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
528.52 15.24 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
543.76 8.68 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
552.44 6.64 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
559.08 54.32 Vietnam hospital lounge hospital lounge int ++ day
|
||||
613.4 5.92 Vietnam hospital lounge hospital lounge int ++ day
|
||||
619.32 3.48 Vietnam hospital lounge hospital lounge int 0 day
|
||||
622.8 16.84 Vietnam hospital lounge hospital lounge int ++ day
|
||||
639.64 15.96 Vietnam hospital lounge hospital lounge int ++ day
|
||||
655.6 8.76 Vietnam hospital dormitory hospital dormitory int ++ day
|
||||
664.36 17.48 Vietnam hospital dormitory hospital dormitory int 0 day
|
||||
681.84 3.56 Washington D.C. White House front of White House (broadcast) ext ++ day
|
||||
685.4 4.84 Greenbow Alabama main street in the barbershop int 0 day
|
||||
690.24 3.36 Greenbow Alabama main street in the barbershop int 0 day
|
||||
693.6 1.96 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
695.56 1.68 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
697.24 5.44 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
702.68 1.92 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
704.6 6.8 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
711.4 3.76 Greenbow Alabama main street in the barbershop int 0 day
|
||||
715.16 1.36 Greenbow Alabama main street in the barbershop int 0 day
|
||||
716.52 0.92 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
717.44 1.0 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
718.44 4.04 Washington D.C. White House room in White House (broadcast) int 0 day
|
||||
722.48 13.48 Washington D.C. Lincoln Memorial bus stop near Lincoln Memorial ext ++ day
|
||||
735.96 10.4 Washington D.C. Lincoln Memorial bus stop near Lincoln Memorial ext 0 day
|
||||
746.36 1.72 Washington D.C. Lincoln Memorial bus stop near Lincoln Memorial ext 0 day
|
||||
748.08 9.08 Washington D.C. Lincoln Memorial bus stop near Lincoln Memorial ext 0 day
|
||||
757.16 28.36 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
785.52 5.6 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
791.12 7.28 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
798.4 3.04 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
801.44 3.0 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
804.44 1.4 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
805.84 20.4 Washington D.C. Lincoln Memorial behind the stage ext 0 day
|
||||
826.24 4.68 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
830.92 2.36 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
833.28 3.76 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
837.04 5.76 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
842.8 3.64 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
846.44 19.28 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
865.72 9.92 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
875.64 2.48 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
878.12 10.48 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
888.6 3.44 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
892.04 3.2 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
895.24 1.88 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
897.12 2.56 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
899.68 4.12 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
903.8 3.88 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
907.68 6.08 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
913.76 9.92 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
923.68 7.2 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
930.88 1.16 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
932.04 1.96 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
934.0 1.88 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
935.88 1.64 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
937.52 2.4 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
939.92 2.16 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
942.08 1.92 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
944.0 1.92 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
945.92 1.16 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
947.08 4.64 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
951.72 3.68 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
955.4 10.84 Washington D.C. Lincoln Memorial between Lincoln Memorial and Reflecting Pool ext 0 day
|
||||
|
115
segments/avmovie/locations_run-5_events.tsv
Normal file
115
segments/avmovie/locations_run-5_events.tsv
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
6.2 8.68 Washington D.C. protester's camp protester's camp ext ++ night
|
||||
14.88 6.44 Washington D.C. Black Panther's HQ Black Panther's HQ int ++ night
|
||||
21.32 45.92 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
67.24 3.72 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
70.96 2.04 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
73.0 0.68 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
73.68 1.08 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
74.76 5.64 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
80.4 1.2 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
81.6 0.48 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
82.08 0.64 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
82.72 0.68 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
83.4 0.56 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
83.96 1.52 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
85.48 1.2 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
86.68 2.44 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
89.12 1.28 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
90.4 1.2 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
91.6 16.52 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
108.12 2.64 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
110.76 9.88 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
120.64 1.6 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
122.24 3.56 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
125.8 2.6 Washington D.C. Black Panther's HQ Black Panther's HQ int 0 night
|
||||
128.4 51.48 Washington D.C. White House front of White House ext + night
|
||||
179.88 2.28 United States flashback highway flashback highway ext - day
|
||||
182.16 2.36 United States flashback highway flashback highway ext 0 day
|
||||
184.52 7.24 United States hippie camp turn on tune in drop out ext ++ night
|
||||
191.76 8.72 Hollywood Walk of Fame in front of cinema ext ++ day
|
||||
200.48 2.24 Hollywood Walk of Fame in front of cinema ext 0 day
|
||||
202.72 1.44 Hollywood Walk of Fame in front of cinema ext 0 day
|
||||
204.16 1.36 Hollywood Walk of Fame in front of cinema ext 0 day
|
||||
205.52 7.72 Washington D.C. Tidal Basin with Jefferson Memorial Tidal Basin with Jefferson Memorial ext ++ day
|
||||
213.24 20.6 Washington D.C. bus stop bus stop ext + day
|
||||
233.84 11.84 Washington D.C. bus stop bus stop ext 0 day
|
||||
245.68 14.52 Washington D.C. bus stop bus stop ext 0 day
|
||||
260.2 12.4 Washington D.C. bus stop bus stop ext 0 day
|
||||
272.6 5.64 Washington D.C. bus stop bus stop ext 0 day
|
||||
278.24 6.56 Washington D.C. bus stop bus stop ext 0 day
|
||||
284.8 3.04 Washington D.C. bus stop bus stop ext 0 day
|
||||
287.84 3.52 Washington D.C. bus stop bus stop ext 0 day
|
||||
291.36 4.84 Washington D.C. bus stop bus stop ext 0 day
|
||||
296.2 3.52 Washington D.C. bus stop bus stop ext 0 day
|
||||
299.72 8.12 Washington D.C. bus stop bus stop ext 0 day
|
||||
307.84 1.4 Washington D.C. bus stop bus stop ext 0 day
|
||||
309.24 1.36 Washington D.C. bus stop bus stop ext 0 day
|
||||
310.6 1.28 Washington D.C. bus stop bus stop ext 0 day
|
||||
311.88 1.96 Washington D.C. bus stop bus stop ext 0 day
|
||||
313.84 1.36 Washington D.C. bus stop bus stop ext 0 day
|
||||
315.2 1.12 Washington D.C. bus stop bus stop ext 0 day
|
||||
316.32 5.4 Washington D.C. bus stop bus stop ext 0 day
|
||||
321.72 0.88 Washington D.C. bus stop bus stop ext 0 day
|
||||
322.6 1.48 Washington D.C. bus stop bus stop ext 0 day
|
||||
324.08 1.56 Washington D.C. bus stop bus stop ext 0 day
|
||||
325.64 2.4 Washington D.C. bus stop bus stop ext 0 day
|
||||
328.04 4.84 Washington D.C. bus stop bus stop ext 0 day
|
||||
332.88 6.72 Washington D.C. bus stop bus stop ext 0 day
|
||||
339.6 26.6 United States veteran's hospital veteran's hospital lounge int ++ day
|
||||
366.2 3.04 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
369.24 5.52 China Ping Pong Tournament inside stadium int - day
|
||||
374.76 3.2 China Ping Pong Tournament inside stadium int 0 day
|
||||
377.96 2.32 China Ping Pong Tournament inside stadium int 0 day
|
||||
380.28 5.56 China Ping Pong Tournament inside stadium int 0 day
|
||||
385.84 1.92 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
387.76 2.92 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
390.68 3.4 New York TV studio TV studio (broadcast) int - day
|
||||
394.08 8.36 New York TV studio TV studio (broadcast) int 0 day
|
||||
402.44 11.68 New York TV studio TV studio (broadcast) int 0 day
|
||||
414.12 6.24 New York TV studio TV studio (broadcast) int 0 day
|
||||
420.36 2.2 New York TV studio TV studio (broadcast) int 0 day
|
||||
422.56 6.12 New York TV studio TV studio (broadcast) int 0 day
|
||||
428.68 3.52 New York TV studio TV studio (broadcast) int 0 day
|
||||
432.2 16.2 New York TV studio TV studio (broadcast) int 0 day
|
||||
448.4 10.56 New York outside the TV studio outside the TV studio ext + day
|
||||
458.96 2.6 New York outside the TV studio outside the TV studio ext 0 day
|
||||
461.56 4.92 New York outside the TV studio outside the TV studio ext 0 day
|
||||
466.48 4.72 New York outside the TV studio outside the TV studio ext 0 day
|
||||
471.2 11.2 New York outside the TV studio outside the TV studio ext 0 day
|
||||
482.4 2.28 New York outside the TV studio outside the TV studio ext 0 day
|
||||
484.68 6.4 New York outside the TV studio outside the TV studio ext 0 day
|
||||
491.08 2.44 New York outside the TV studio outside the TV studio ext 0 day
|
||||
493.52 3.36 New York outside the TV studio outside the TV studio ext 0 day
|
||||
496.88 1.36 New York outside the TV studio outside the TV studio ext 0 day
|
||||
498.24 1.08 New York outside the TV studio outside the TV studio ext 0 day
|
||||
499.32 1.36 New York outside the TV studio outside the TV studio ext 0 day
|
||||
500.68 2.24 New York outside the TV studio outside the TV studio ext 0 day
|
||||
502.92 0.88 New York outside the TV studio outside the TV studio ext 0 day
|
||||
503.8 2.44 New York outside the TV studio outside the TV studio ext 0 day
|
||||
506.24 10.64 New York red light district red light district ext ++ night
|
||||
516.88 22.92 New York red light district red light district ext 0 night
|
||||
539.8 5.32 New York Dan's apartment Dan's apartment int + night
|
||||
545.12 6.72 New York Dan's apartment Dan's apartment int 0 night
|
||||
551.84 7.72 New York Dan's apartment Dan's apartment int 0 night
|
||||
559.56 3.2 New York Dan's apartment Dan's apartment int 0 night
|
||||
562.76 3.56 New York Dan's apartment Dan's apartment int 0 night
|
||||
566.32 5.6 New York Dan's apartment Dan's apartment int 0 night
|
||||
571.92 15.8 New York Dan's apartment Dan's apartment int 0 night
|
||||
587.72 3.36 New York Dan's apartment Dan's apartment int 0 night
|
||||
591.08 26.72 New York Dan's apartment Dan's apartment int 0 night
|
||||
617.8 5.24 New York Dan's apartment Dan's apartment int 0 night
|
||||
623.04 5.44 New York Dan's apartment Dan's apartment int 0 night
|
||||
628.48 7.28 New York Dan's apartment Dan's apartment int 0 night
|
||||
635.76 2.44 New York Dan's apartment Dan's apartment int 0 night
|
||||
638.2 1.68 New York Dan's apartment Dan's apartment int 0 night
|
||||
639.88 1.08 New York Dan's apartment Dan's apartment int 0 night
|
||||
640.96 96.92 New York bar in New York bar in New York int ++ night
|
||||
737.88 32.8 California apartment with mirrored wall apartment with mirrored wall int 0 night
|
||||
770.68 31.32 New York bar in New York bar in New York int 0 night
|
||||
802.0 4.64 Washington D.C. White House front of White House (broadcast) ext ++ day
|
||||
806.64 12.28 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
818.92 17.4 Washington D.C. White House unknown_2 (broadcast) int - day
|
||||
836.32 22.88 Washington D.C. Watergate Hotel room in Watergate Hotel int ++ night
|
||||
859.2 21.32 United States gymnasium gymnasium int ++ day
|
||||
880.52 35.2 United States gymnasium gymnasium int 0 day
|
||||
|
102
segments/avmovie/locations_run-6_events.tsv
Normal file
102
segments/avmovie/locations_run-6_events.tsv
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
7.64 16.12 Gump property Gump House front of Gump House ext ++ day
|
||||
23.76 3.56 Gump property Gump House front of Gump House ext 0 day
|
||||
27.32 36.72 Gump property Gump House corridor downstairs int 0 day
|
||||
64.04 10.64 Bayou La Batre Bubba's Home Bubba's Home ext ++ day
|
||||
74.68 4.36 Bayou La Batre Bubba's Home Bubba's Home ext + day
|
||||
79.04 2.24 Bayou La Batre Bubba's Home Bubba's Home ext 0 day
|
||||
81.28 1.84 Bayou La Batre Bubba's Home Bubba's Home ext 0 day
|
||||
83.12 3.48 Bayou La Batre Bubba's Grave Bubba's Grave ext + day
|
||||
86.6 4.8 Bayou La Batre Bubba's Grave Bubba's Grave ext 0 day
|
||||
91.4 16.92 Bayou La Batre Bubba's Grave Bubba's Grave ext 0 day
|
||||
108.32 9.12 Bayou La Batre harbor gangplank to ships ext + day
|
||||
117.44 6.96 Bayou La Batre harbor stall ext + day
|
||||
124.4 9.8 Bayou La Batre Bubba's Grave Bubba's Grave ext + day
|
||||
134.2 14.56 Bayou La Batre Bubba's Grave Bubba's Grave ext 0 day
|
||||
148.76 15.92 Bayou La Batre on the boat on the boat ext ++ day
|
||||
164.68 13.92 Bayou La Batre on the boat on the boat ext 0 day
|
||||
178.6 22.32 Bayou La Batre harbor landing stages ext ++ day
|
||||
200.92 7.84 Bayou La Batre harbor landing stages ext 0 day
|
||||
208.76 19.32 California Disco Disco int + night
|
||||
228.08 5.44 Bayou La Batre on the boat on the boat ext + day
|
||||
233.52 23.4 California apartment with balcony bedroom int + night
|
||||
256.92 5.08 California apartment with balcony bedroom int 0 night
|
||||
262.0 7.12 California apartment with balcony balcony ext 0 night
|
||||
269.12 12.56 California apartment with balcony balcony ext 0 night
|
||||
281.68 2.48 California apartment with balcony balcony ext 0 night
|
||||
284.16 3.56 California apartment with balcony balcony ext 0 night
|
||||
287.72 2.96 California apartment with balcony balcony ext 0 night
|
||||
290.68 1.76 California apartment with balcony balcony ext 0 night
|
||||
292.44 2.08 California apartment with balcony balcony ext 0 night
|
||||
294.52 1.36 California apartment with balcony balcony ext 0 night
|
||||
295.88 6.36 California apartment with balcony balcony ext 0 night
|
||||
302.24 18.08 California apartment with balcony balcony ext 0 night
|
||||
320.32 18.16 Bayou La Batre on the boat on the boat ext 0 night
|
||||
338.48 11.6 Bayou La Batre harbor jetty ext ++ day
|
||||
350.08 2.44 Bayou La Batre harbor jetty ext 0 day
|
||||
352.52 4.92 Bayou La Batre harbor jetty ext 0 day
|
||||
357.44 1.72 Bayou La Batre harbor jetty ext 0 day
|
||||
359.16 1.52 Bayou La Batre harbor jetty ext 0 day
|
||||
360.68 3.04 Bayou La Batre harbor jetty ext 0 day
|
||||
363.72 6.0 Bayou La Batre harbor jetty ext 0 day
|
||||
369.72 21.0 Bayou La Batre harbor jetty ext 0 day
|
||||
390.72 2.32 Bayou La Batre harbor jetty ext 0 day
|
||||
393.04 2.08 Bayou La Batre harbor jetty ext 0 day
|
||||
395.12 8.68 Bayou La Batre harbor jetty ext 0 day
|
||||
403.8 5.48 Bayou La Batre harbor jetty ext 0 day
|
||||
409.28 7.88 Bayou La Batre harbor jetty ext 0 day
|
||||
417.16 3.0 Bayou La Batre harbor jetty ext 0 day
|
||||
420.16 2.12 Bayou La Batre harbor jetty ext 0 day
|
||||
422.28 14.4 Bayou La Batre harbor jetty ext 0 day
|
||||
436.68 5.72 Bayou La Batre on the boat on the boat ext ++ day
|
||||
442.4 12.72 Bayou La Batre on the boat on the boat ext 0 day
|
||||
455.12 8.08 Bayou La Batre on the boat on the boat ext 0 day
|
||||
463.2 7.68 Bayou La Batre on the boat on the boat ext 0 day
|
||||
470.88 22.4 Bayou La Batre on the boat on the boat ext + day
|
||||
493.28 8.6 Bayou La Batre Foursquare Church Foursquare Church int ++ day
|
||||
501.88 7.0 Bayou La Batre Foursquare Church Foursquare Church int 0 day
|
||||
508.88 25.28 Bayou La Batre on the boat on the boat ext ++ day
|
||||
534.16 17.28 Bayou La Batre on the boat on the boat ext ++ day
|
||||
551.44 12.24 Bayou La Batre on the boat on the boat ext 0 day
|
||||
563.68 3.84 Bayou La Batre on the boat on the boat ext 0 day
|
||||
567.52 5.44 Bayou La Batre on the boat on the boat ext 0 day
|
||||
572.96 5.52 Bayou La Batre on the boat on the boat ext 0 day
|
||||
578.48 5.8 Bayou La Batre on the boat on the boat ext 0 day
|
||||
584.28 2.04 Gump property Gump House living room int ++ day
|
||||
586.32 7.56 Bayou La Batre harbor yet another jetty ext 0 day
|
||||
593.88 10.44 Gump property Gump House living room int 0 day
|
||||
604.32 2.44 Gump property Gump House living room int 0 day
|
||||
606.76 3.04 Gump property Gump House living room int 0 day
|
||||
609.8 1.28 Bayou La Batre on the boat on the boat ext ++ day
|
||||
611.08 1.44 Bayou La Batre on the boat on the boat ext ++ day
|
||||
612.52 6.88 Bayou La Batre on the boat on the boat ext ++ day
|
||||
619.4 18.96 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
638.36 4.6 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
642.96 18.08 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
661.04 3.52 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
664.56 17.12 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
681.68 1.92 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
683.6 2.88 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
686.48 1.72 Bayou La Batre on the boat on the boat ext - day
|
||||
688.2 2.6 Bayou La Batre on the boat on the boat ext 0 day
|
||||
690.8 6.32 Bayou La Batre on the boat on the boat ext 0 day
|
||||
697.12 1.36 Bayou La Batre on the boat on the boat ext 0 day
|
||||
698.48 2.64 Bayou La Batre on the boat on the boat ext 0 day
|
||||
701.12 1.28 Bayou La Batre on the boat on the boat ext 0 day
|
||||
702.4 10.4 Bayou La Batre on the boat on the boat ext 0 day
|
||||
712.8 4.88 Bayou La Batre on the boat on the boat ext 0 day
|
||||
717.68 9.88 Bayou La Batre on the boat on the boat ext 0 day
|
||||
727.56 29.92 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
757.48 4.6 Greenbow Alabama football field on the football field ext - day
|
||||
762.08 10.68 Gump property access-road at the mail boxes ext ++ day
|
||||
772.76 4.28 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
777.04 5.84 Bayou La Batre Foursquare Church Foursquare Church int - day
|
||||
782.88 9.36 Bayou La Batre Foursquare Church in front of Foursquare Church ext ++ day
|
||||
792.24 6.28 Bayou La Batre Gump Medical Center Gump Medical Center ext ++ day
|
||||
798.52 11.6 Bayou La Batre Bubba's Home Bubba's Home ext ++ day
|
||||
810.12 1.68 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
811.8 6.4 Bayou La Batre Bubba's mother's dining room Bubba's mother's dining room int - day
|
||||
818.2 8.72 Greenbow Alabama football field on the football field ext ++ day
|
||||
826.92 10.84 Gump property Gump House front of Gump House ext ++ night
|
||||
837.76 8.96 Gump property Gump House front of Gump House ext 0 night
|
||||
846.72 22.12 Gump property Gump House front of Gump House ext 0 night
|
||||
|
108
segments/avmovie/locations_run-7_events.tsv
Normal file
108
segments/avmovie/locations_run-7_events.tsv
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
6.76 18.92 Gump property Gump House garden ext + day
|
||||
25.68 13.72 Gump property Gump House front of Gump House ext 0 day
|
||||
39.4 5.72 Gump property Gump House garden ext 0 day
|
||||
45.12 2.76 Gump property Gump House garden ext 0 day
|
||||
47.88 9.4 Gump property Gump House garden ext 0 day
|
||||
57.28 2.24 Gump property Gump House garden ext 0 day
|
||||
59.52 2.32 Gump property Gump House garden ext 0 day
|
||||
61.84 5.12 Gump property Gump House garden ext 0 day
|
||||
66.96 2.04 Gump property Gump House garden ext 0 day
|
||||
69.0 3.0 Gump property Gump House garden ext 0 day
|
||||
72.0 3.12 Gump property Gump House garden ext 0 day
|
||||
75.12 5.36 Gump property Gump House garden ext 0 day
|
||||
80.48 7.08 Gump property Gump House garden ext 0 day
|
||||
87.56 15.92 Gump property Gump House Jenny's bedroom int ++ day
|
||||
103.48 17.88 Greenbow Alabama random meadow random meadow ext ++ day
|
||||
121.36 10.28 Greenbow Alabama tree on a field tree on a field ext ++ day
|
||||
131.64 7.4 Gump property Gump House unknown_1 int ++ day
|
||||
139.04 7.28 Gump property Gump House front of Gump House ext ++ day
|
||||
146.32 19.36 Gump property Gump House front of Gump House ext ++ day
|
||||
165.68 12.96 Greenbow Alabama riverside riverside ext ++ day
|
||||
178.64 27.56 Gump property Gump House living room int ++ night
|
||||
206.2 12.4 Gump property Gump House corridor downstairs int 0 night
|
||||
218.6 4.36 Gump property Gump House corridor downstairs int 0 night
|
||||
222.96 4.04 Gump property Gump House corridor downstairs int 0 night
|
||||
227.0 4.6 Gump property Gump House corridor downstairs int 0 night
|
||||
231.6 5.28 Gump property Gump House corridor downstairs int 0 night
|
||||
236.88 2.28 Gump property Gump House corridor downstairs int 0 night
|
||||
239.16 11.16 Gump property Gump House corridor downstairs int 0 night
|
||||
250.32 1.96 Gump property Gump House corridor downstairs int 0 night
|
||||
252.28 3.44 Gump property Gump House corridor downstairs int 0 night
|
||||
255.72 3.64 Gump property Gump House corridor downstairs int 0 night
|
||||
259.36 3.32 Gump property Gump House corridor downstairs int 0 night
|
||||
262.68 4.0 Gump property Gump House front of Gump House ext + night
|
||||
266.68 20.96 Gump property Gump House Forrest's bedroom int + night
|
||||
287.64 21.48 Gump property Gump House Forrest's bedroom int 0 night
|
||||
309.12 11.16 Gump property Gump House Forrest's bedroom int 0 night
|
||||
320.28 17.0 Gump property Gump House front of Gump House ext ++ day
|
||||
337.28 9.76 Gump property Gump House front of Gump House ext 0 day
|
||||
347.04 17.16 Gump property Gump House Forrest's bedroom int 0 day
|
||||
364.2 13.48 Gump property Gump House unknown_2 int ++ day
|
||||
377.68 8.64 Gump property Gump House Jenny's bedroom int ++ day
|
||||
386.32 8.32 Gump property Gump House living room int ++ day
|
||||
394.64 19.4 Gump property Gump House front of Gump House ext ++ day
|
||||
414.04 16.32 Gump property Gump House front of Gump House ext 0 day
|
||||
430.36 6.56 Gump property access-road alley to Gump House ext 0 day
|
||||
436.92 6.64 Gump property access-road at the mail boxes ext + day
|
||||
443.56 4.6 Greenbow Alabama main street in the barbershop int + day
|
||||
448.16 8.32 Greenbow Alabama road with bridge road with bridge ext + day
|
||||
456.48 5.6 Mississippi road with Mississippi sign road with Mississippi sign ext ++ day
|
||||
462.08 6.36 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
468.44 4.2 Santa Monica yacht harbor yacht harbor ext - day
|
||||
472.64 9.72 Santa Monica yacht harbor yacht harbor's jetty ext + day
|
||||
482.36 11.52 Atlantic Ocean beacon beacon ext ++ day
|
||||
493.88 5.36 Atlantic Ocean beacon beacon ext 0 day
|
||||
499.24 5.64 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
504.88 3.28 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
508.16 3.04 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
511.2 9.4 United States road at a river road at a river ext - day
|
||||
520.6 6.92 United States road between wheat fields road between wheat fields ext ++ day
|
||||
527.52 7.48 Rocky Mountains stone bridge stone bridge ext ++ day
|
||||
535.0 6.92 United States road between fences road between fences ext ++ day
|
||||
541.92 10.04 United States autumn forrest autumn forrest with houses ext ++ day
|
||||
551.96 6.04 United States autumn forrest road trough autumn forrest ext + day
|
||||
558.0 6.28 Greenbow Alabama main street in the barbershop int + day
|
||||
564.28 2.24 Greenbow Alabama main street in the barbershop int + day
|
||||
566.52 13.44 Savannah restaurant restaurant int + day
|
||||
579.96 16.64 Mississippi bridge at mississippi river bridge at mississippi river ext 0 day
|
||||
596.6 1.64 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
598.24 4.48 United States street with houses street with houses ext - day
|
||||
602.72 5.36 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
608.08 12.04 United States street with houses street with houses ext - day
|
||||
620.12 5.36 United States street in mountains street in mountains ext ++ day
|
||||
625.48 5.52 United States street in desert street in desert ext ++ day
|
||||
631.0 6.8 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
637.8 32.04 United States street with sidewalk street with sidewalk ext - day
|
||||
669.84 3.2 United States street with crashing cars street with crashing cars ext ++ day
|
||||
673.04 21.36 United States truck stop truck stop ext - day
|
||||
694.4 4.96 United States truck stop truck stop ext 0 day
|
||||
699.36 3.92 United States truck stop truck stop ext 0 day
|
||||
703.28 32.6 Monument Valley road through Monument Valley road through Monument Valley ext ++ day
|
||||
735.88 9.76 Monument Valley road through Monument Valley road through Monument Valley ext 0 day
|
||||
745.64 18.76 Monument Valley road through Monument Valley road through Monument Valley ext 0 day
|
||||
764.4 27.92 Monument Valley road through Monument Valley road through Monument Valley ext 0 day
|
||||
792.32 6.44 Washington D.C. Hilton Hotel Ronald Reagon (broadcast) ext ++ day
|
||||
798.76 12.56 Gump property Gump House living room int 0 day
|
||||
811.32 36.32 Savannah bench at bus stop bench at bus stop ext ++ day
|
||||
847.64 10.12 Savannah bench at bus stop bench at bus stop ext 0 day
|
||||
857.76 2.2 Savannah Jenny's apartment Jenny's apartment's front door int + day
|
||||
859.96 3.12 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
863.08 1.72 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
864.8 21.32 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
886.12 3.76 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
889.88 5.8 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
895.68 7.48 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
903.16 39.04 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
942.2 3.4 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
945.6 11.0 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
956.6 3.12 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
959.72 1.84 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
961.56 7.44 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
969.0 27.64 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
996.64 4.2 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1000.84 12.0 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1012.84 4.12 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1016.96 31.76 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1048.72 14.76 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
1063.48 6.08 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
|
78
segments/avmovie/locations_run-8_events.tsv
Normal file
78
segments/avmovie/locations_run-8_events.tsv
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
onset duration major_location setting locale int_or_ext flow_of_time time_of_day
|
||||
1.48 6.12 Savannah Jenny's apartment Jenny's apartment int 0 day
|
||||
7.6 23.64 Savannah park with playground park with playground ext + day
|
||||
31.24 20.64 Savannah park with playground park with playground ext 0 day
|
||||
51.88 4.16 Savannah park with playground park with playground ext 0 day
|
||||
56.04 7.56 Savannah park with playground park with playground ext 0 day
|
||||
63.6 37.96 Gump property Gump House front of Gump House ext ++ day
|
||||
101.56 3.72 Gump property Gump House front of Gump House ext 0 day
|
||||
105.28 2.28 Gump property Gump House front of Gump House ext 0 day
|
||||
107.56 3.16 Gump property Gump House front of Gump House ext 0 day
|
||||
110.72 4.4 Gump property Gump House front of Gump House ext 0 day
|
||||
115.12 8.2 Gump property Gump House front of Gump House ext 0 day
|
||||
123.32 2.56 Gump property Gump House front of Gump House ext 0 day
|
||||
125.88 7.44 Gump property Gump House front of Gump House ext 0 day
|
||||
133.32 7.52 Gump property Gump House front of Gump House ext 0 day
|
||||
140.84 3.12 Gump property Gump House front of Gump House ext 0 day
|
||||
143.96 6.12 Gump property Gump House front of Gump House ext 0 day
|
||||
150.08 4.8 Gump property Gump House front of Gump House ext 0 day
|
||||
154.88 2.08 Gump property Gump House front of Gump House ext 0 day
|
||||
156.96 8.24 Gump property Gump House front of Gump House ext 0 day
|
||||
165.2 4.4 Gump property Gump House front of Gump House ext 0 day
|
||||
169.6 2.04 Gump property Gump House front of Gump House ext 0 day
|
||||
171.64 2.36 Gump property Gump House front of Gump House ext 0 day
|
||||
174.0 14.96 Gump property Gump House garden ext + day
|
||||
188.96 14.24 Gump property access-road alley to Gump House ext ++ day
|
||||
203.2 8.76 Gump property Gump House Forrest's mother's bedroom int ++ day
|
||||
211.96 7.12 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
219.08 2.88 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
221.96 19.68 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
241.64 6.68 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
248.32 11.64 Vietnam yet another jungle yet another jungle ext - night
|
||||
259.96 1.48 Gump property Gump House Forrest's mother's bedroom int ++ day
|
||||
261.44 4.4 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
265.84 8.4 Bayou La Batre on the boat on the boat ext - day
|
||||
274.24 8.28 Rocky Mountains street at a lake street at a lake ext ++ day
|
||||
282.52 3.32 Gump property Gump House Forrest's mother's bedroom int ++ day
|
||||
285.84 12.72 Monument Valley road through Monument Valley road through Monument Valley ext - day
|
||||
298.56 2.84 Gump property Gump House Forrest's mother's bedroom int ++ day
|
||||
301.4 3.96 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
305.36 5.04 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
310.4 3.44 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
313.84 3.08 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
316.92 2.2 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
319.12 2.72 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
321.84 6.92 Gump property Gump House Forrest's mother's bedroom int 0 day
|
||||
328.76 6.92 Greenbow Alabama tree on a field Jenny's Grave ext ++ day
|
||||
335.68 8.56 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
344.24 5.24 Greenbow Alabama Jenny's house front of Jenny's house ext - day
|
||||
349.48 5.96 Greenbow Alabama tree on a field Jenny's Grave ext ++ day
|
||||
355.44 5.36 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
360.8 7.0 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
367.8 8.56 Gump property Gump House Forrest's bedroom int - night
|
||||
376.36 13.76 Greenbow Alabama tree on a field Jenny's Grave ext ++ day
|
||||
390.12 6.72 Gump property Gump House front of Gump House ext - night
|
||||
396.84 6.32 Greenbow Alabama riverside riverside ext ++ day
|
||||
403.16 25.48 Greenbow Alabama tree on a field Jenny's Grave ext ++ day
|
||||
428.64 4.88 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
433.52 11.52 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
445.04 63.76 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
508.8 25.6 Greenbow Alabama tree on a field Jenny's Grave ext 0 day
|
||||
534.4 7.32 Gump property access-road at the mail boxes ext ++ day
|
||||
541.72 9.4 Gump property access-road at the mail boxes ext 0 day
|
||||
551.12 4.12 Gump property access-road at the mail boxes ext 0 day
|
||||
555.24 2.64 Gump property access-road at the mail boxes ext 0 day
|
||||
557.88 6.36 Gump property access-road at the mail boxes ext 0 day
|
||||
564.24 3.08 Gump property access-road at the mail boxes ext 0 day
|
||||
567.32 1.56 Gump property access-road at the mail boxes ext 0 day
|
||||
568.88 1.52 Gump property access-road at the mail boxes ext 0 day
|
||||
570.4 5.08 Gump property access-road at the mail boxes ext 0 day
|
||||
575.48 1.96 Gump property access-road at the mail boxes ext 0 day
|
||||
577.44 3.84 Gump property access-road at the mail boxes ext 0 day
|
||||
581.28 1.4 Gump property access-road at the mail boxes ext 0 day
|
||||
582.68 11.2 Gump property access-road at the mail boxes ext 0 day
|
||||
593.88 1.56 Gump property access-road at the mail boxes ext 0 day
|
||||
595.44 2.12 Gump property access-road at the mail boxes ext 0 day
|
||||
597.56 5.0 Gump property access-road at the mail boxes ext 0 day
|
||||
602.56 9.0 Gump property access-road at the mail boxes ext 0 day
|
||||
611.56 60.2 Gump property access-road at the mail boxes ext 0 day
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue