input = "/Users/joregan/Playing/hsi_google/"
output = "/tmp/hsi_google"
import json

def convert_google_asr_file_to_textgrid_times(filename, output_words=True):
    segments = []
    words = []
    last_end = 0.0

    with open(filename) as inf:
        data = json.load(inf)
    assert "results" in data, "no 'results' list, this is maybe not from Google ASR"
    for result in data["results"]:
        if len(result["alternatives"]) != 1:
            print("More than one alternative", result["alternatives"])
        item = result["alternatives"][0]
        if not "transcript" in item:
            continue
        text = item["transcript"]
        end_time = None
        start_time = last_end
        if "words" in item:
            if "startTime" in item["words"][0]:
                start_time = item["words"][0]["startTime"]
            if "words" in item:
                if "endTime" in item["words"][-1]:
                    end_time = item["words"][-1]["endTime"]
        else:
            if "resultEndTime" in item:
                end_time = item["resultEndTime"]
        if not end_time:
            print("Still no end time?", item)
            continue
        if end_time.endswith("s"):
            end_time = end_time[:-1]
        end_time = float(end_time)
        segments.append((last_end, end_time, text))
        last_end = end_time

        if output_words and "words" in item:
            for word in item["words"]:
                start = word["startTime"]
                if start[-1] == "s":
                    start = float(start[:-1])
                start = float(start)
                end = word["endTime"]
                if end[-1] == "s":
                    end = end[:-1]
                end = float(end)
                if start == end:
                    end += 0.01
                word_text = word["word"]
                words.append((start, end, word_text))

    return segments, words
def pad_with_silences(items, strict=False):
    last = 0.0
    output = []
    for item in items:
        if item[0] > last:
            output.append((last, item[0], ""))
            output.append(item)
            last = item[1]
        elif item[0] == last:
            output.append(item)
            last = item[1]
        elif item[0] < last:
            print(f"Error: {item} starts before previous end time {last}")
            if strict:
                return []
            new_end = item[1]
            if new_end <= last:
                new_end += 0.01
            output.append((last, new_end, item[2]))
            last = new_end
    return output
from praatio import textgrid
from praatio.utilities.constants import Interval

def convert_to_textgrid(filename, outfile):
    a, b = convert_google_asr_file_to_textgrid_times(filename)
    if a == []:
        print("Empty results", filename)
        return
    write_words = True
    if len(b) == []:
        write_words = False
    a = pad_with_silences(a)
    if write_words:
        b = pad_with_silences(b)
        if len(b) == []:
            write_words = False

    a_start = a[0][0]
    a_end = a[-1][1]
    if write_words:
        b_start = b[0][0]
        b_end = b[-1][1]

    a = [Interval(x[0], x[1], x[2]) for x in a]
    if write_words:
        b = [Interval(x[0], x[1], x[2]) for x in b]

    tg = textgrid.Textgrid()
    res_tier = textgrid.IntervalTier('google_results', a, a_start, a_end)
    tg.addTier(res_tier)
    if write_words:
        word_tier = textgrid.IntervalTier('google_words', b, b_start, b_end)
        tg.addTier(word_tier)
    tg.save(outfile, format="long_textgrid", includeBlankSpaces=False)
from pathlib import Path

inpath = Path(input)
outpath = Path(output)

if not inpath.is_dir():
    convert_to_textgrid(input, output)
else:
    if not outpath.is_dir():
        outpath.mkdir()
    for filename in inpath.glob("*.json"):
        print(filename)
        outfile = outpath / f"{filename.stem}.TextGrid"
        convert_to_textgrid(str(filename), outfile)
/Users/joregan/Playing/hsi_google/hsi_4_0716_210_002_inter.json
/Users/joregan/Playing/hsi_google/hsi_6_0718_209_003_inter.json
Error: (23.2, 23.3, 'out?') starts before previous end time 23.21
Error: (29.9, 30.0, 'can') starts before previous end time 29.91
Error: (31.0, 31.2, "it's") starts before previous end time 31.01
Error: (41.2, 41.6, 'contractor') starts before previous end time 41.21
Error: (42.2, 42.21, 'about.') starts before previous end time 42.21
Error: (42.2, 42.9, "Don't") starts before previous end time 42.22
Error: (48.0, 48.5, 'talk') starts before previous end time 48.01
Error: (53.2, 53.9, 'Uh') starts before previous end time 53.21
Error: (57.4, 57.41, 'go.') starts before previous end time 57.41
Error: (58.6, 58.7, 'go') starts before previous end time 58.61
Error: (61.3, 62.5, 'The') starts before previous end time 61.309999999999995
Error: (71.6, 71.9, 'watch') starts before previous end time 71.61
Error: (74.3, 74.5, 'go.') starts before previous end time 74.31
Error: (75.5, 75.7, 'what?') starts before previous end time 75.51
Error: (81.7, 82.6, 'because') starts before previous end time 81.71000000000001
Error: (89.5, 89.8, 'walking') starts before previous end time 89.51
Error: (90.5, 90.8, 'art.') starts before previous end time 90.51
Error: (92.9, 93.0, 'the') starts before previous end time 92.91000000000001
Error: (93.0, 93.4, 'but') starts before previous end time 93.01
Error: (95.8, 95.81, 'go.') starts before previous end time 95.81
Error: (95.8, 96.4, 'Oh,') starts before previous end time 95.82000000000001
Error: (112.9, 113.8, "it's") starts before previous end time 112.91000000000001
Error: (115.3, 116.3, "aren't") starts before previous end time 115.31
Error: (116.5, 116.8, 'see') starts before previous end time 116.51
Error: (121.0, 121.1, 'make') starts before previous end time 121.01
Error: (121.1, 121.6, 'Yes,') starts before previous end time 121.11
Error: (123.8, 123.9, 'to') starts before previous end time 123.81
Error: (123.9, 124.2, 'because') starts before previous end time 123.91000000000001
Error: (124.7, 124.71000000000001, 'be') starts before previous end time 124.71000000000001
Error: (124.7, 124.9, 'you.') starts before previous end time 124.72000000000001
Error: (135.2, 135.4, 'corner') starts before previous end time 135.20999999999998
Error: (135.8, 135.9, 'them,') starts before previous end time 135.81
Error: (136.7, 137.0, 'Oh,') starts before previous end time 136.70999999999998
Error: (147.0, 147.1, 'here.') starts before previous end time 147.01
Error: (159.8, 159.9, 'be') starts before previous end time 159.81
Error: (165.0, 165.5, 'why') starts before previous end time 165.01
Error: (165.8, 165.9, 'the') starts before previous end time 165.81
Error: (167.5, 167.51, 'remove') starts before previous end time 167.51
Error: (167.5, 167.8, 'them') starts before previous end time 167.51999999999998
Error: (168.1, 168.4, "it's") starts before previous end time 168.10999999999999
Error: (191.3, 191.5, 'I') starts before previous end time 191.31
Error: (191.6, 191.8, 'keep') starts before previous end time 191.60999999999999
Error: (196.3, 196.4, 'keep') starts before previous end time 196.31
Error: (197.0, 197.2, "can't") starts before previous end time 197.01
Error: (209.1, 209.10999999999999, 'it') starts before previous end time 209.10999999999999
Error: (209.1, 209.5, 'only') starts before previous end time 209.11999999999998
Error: (210.2, 210.5, 'as') starts before previous end time 210.20999999999998
Error: (212.7, 213.8, 'right?') starts before previous end time 212.70999999999998
Error: (214.5, 215.1, 'everything') starts before previous end time 214.51
Error: (220.1, 220.6, 'Also') starts before previous end time 220.10999999999999
Error: (223.3, 223.8, 'A') starts before previous end time 223.7
Error: (226.8, 227.2, 'you') starts before previous end time 226.81
Error: (227.7, 227.8, 'bit') starts before previous end time 227.70999999999998
Error: (230.4, 230.8, 'you') starts before previous end time 230.41
Error: (252.5, 252.7, 'actually') starts before previous end time 252.51
Error: (265.3, 265.6, 'news.') starts before previous end time 265.31
Error: (269.6, 270.2, 'Yeah,') starts before previous end time 269.61
Error: (270.8, 271.3, 'you') starts before previous end time 270.81
Error: (271.3, 271.9, 'in') starts before previous end time 271.31
Error: (274.7, 275.2, 'Okay.') starts before previous end time 274.71
Error: (278.5, 278.8, 'right') starts before previous end time 278.51
Error: (278.8, 279.1, 'Because') starts before previous end time 278.81
Error: (279.2, 279.7, 'Think.') starts before previous end time 279.3
Error: (281.2, 281.4, 'says') starts before previous end time 281.21
Error: (285.6, 286.0, 'hands.') starts before previous end time 285.61
Error: (287.5, 288.0, 'Yeah.') starts before previous end time 287.81
Error: (289.9, 289.90999999999997, 'them.') starts before previous end time 289.90999999999997
Error: (289.9, 290.8, 'Right') starts before previous end time 289.91999999999996
Error: (306.4, 306.5, 'have') starts before previous end time 306.40999999999997
Error: (335.8, 336.0, 'no.') starts before previous end time 335.81
Error: (336.0, 336.3, 'No,') starts before previous end time 336.01
Error: (336.9, 337.6, 'Okay.') starts before previous end time 336.90999999999997
Error: (338.2, 338.3, 'say.') starts before previous end time 338.21
Error: (341.4, 341.5, 'like') starts before previous end time 341.40999999999997
Error: (342.8, 342.9, 'got') starts before previous end time 342.81
Error: (344.0, 344.5, 'and') starts before previous end time 344.01
Error: (368.4, 368.5, 'have') starts before previous end time 368.40999999999997
Error: (369.3, 369.7, 'yet.') starts before previous end time 369.31
Error: (370.2, 370.4, 'knew') starts before previous end time 370.21
Error: (386.7, 387.1, 'everyone') starts before previous end time 386.71
Error: (391.2, 391.3, 'think') starts before previous end time 391.21
Error: (396.9, 397.2, 'little,') starts before previous end time 396.90999999999997
Error: (399.1, 399.2, 'middle.') starts before previous end time 399.11
Error: (399.6, 399.9, 'like') starts before previous end time 399.61
Error: (401.2, 401.4, 'a') starts before previous end time 401.21
Error: (414.2, 414.3, 'so') starts before previous end time 414.21
Error: (426.7, 427.1, 'you.') starts before previous end time 426.71
Error: (432.8, 433.6, 'Knowledge') starts before previous end time 432.81
Error: (438.4, 438.6, 'got') starts before previous end time 438.40999999999997
Error: (447.3, 447.9, 'letters') starts before previous end time 447.31
Error: (447.9, 448.6, 'texts.') starts before previous end time 447.90999999999997
/Users/joregan/Playing/hsi_google/hsi_1_0515_210_002_inter.json
Error: (6.9, 7.5, 'cannot') starts before previous end time 6.91
Error: (10.1, 10.3, 'remove') starts before previous end time 10.11
Error: (12.7, 12.8, 'mean?') starts before previous end time 12.709999999999999
Error: (19.1, 19.4, 'walls.') starts before previous end time 19.110000000000003
Error: (23.8, 23.9, 'want') starts before previous end time 23.810000000000002
Error: (23.9, 24.1, 'take') starts before previous end time 23.91
Error: (25.3, 25.4, 'know.') starts before previous end time 25.310000000000002
Error: (32.4, 32.5, 'to') starts before previous end time 32.41
Error: (38.5, 38.6, '2') starts before previous end time 38.51
Error: (46.7, 46.8, 'of') starts before previous end time 46.71
Error: (47.7, 48.6, 'way') starts before previous end time 47.71
Error: (49.5, 49.9, 'history') starts before previous end time 49.51
Error: (50.2, 50.5, 'family') starts before previous end time 50.21
Error: (51.2, 51.6, 'taking') starts before previous end time 51.21
Error: (52.8, 53.4, 'uh') starts before previous end time 52.809999999999995
Error: (58.8, 59.0, 'like') starts before previous end time 58.809999999999995
Error: (73.5, 73.6, 'such') starts before previous end time 73.51
Error: (73.7, 73.8, 'day.') starts before previous end time 73.71000000000001
Error: (77.4, 77.7, 'and') starts before previous end time 77.41000000000001
Error: (98.9, 99.0, 'put') starts before previous end time 98.91000000000001
Error: (102.2, 102.3, 'there.') starts before previous end time 102.21000000000001
Error: (105.7, 106.3, 'armchair') starts before previous end time 105.71000000000001
Error: (110.5, 110.7, 'taking') starts before previous end time 110.51
Error: (113.5, 114.0, 'stuff?') starts before previous end time 113.51
Error: (119.6, 119.7, 'on') starts before previous end time 119.61
Error: (119.7, 119.9, 'floor?') starts before previous end time 119.71000000000001
Error: (138.5, 138.9, 'like') starts before previous end time 138.51
Error: (147.9, 148.2, 'we') starts before previous end time 147.91
Error: (148.2, 148.4, 'move') starts before previous end time 148.20999999999998
Error: (150.3, 150.7, '5') starts before previous end time 150.31
Error: (151.5, 151.7, 'left.') starts before previous end time 151.51
Error: (163.2, 163.3, 'move') starts before previous end time 163.20999999999998
Error: (169.0, 169.1, 'on') starts before previous end time 169.01
Error: (178.0, 178.7, 'I') starts before previous end time 178.01
Error: (179.2, 179.5, 'take') starts before previous end time 179.20999999999998
Error: (206.9, 207.0, 'know.') starts before previous end time 206.91
Error: (208.0, 208.2, 'in') starts before previous end time 208.01
Error: (208.2, 208.5, 'pocket.') starts before previous end time 208.20999999999998
Error: (210.9, 210.91, 'on') starts before previous end time 210.91
Error: (210.9, 211.1, 'your') starts before previous end time 210.92
Error: (215.6, 215.9, 'throw') starts before previous end time 215.60999999999999
Error: (218.8, 219.1, 'touching') starts before previous end time 218.81
Error: (231.2, 231.9, 'she') starts before previous end time 231.20999999999998
Error: (241.1, 242.0, 'We') starts before previous end time 241.10999999999999
Error: (246.3, 246.6, 'in') starts before previous end time 246.31
Error: (260.3, 260.6, 'when') starts before previous end time 260.31
Error: (260.6, 261.1, 'tie') starts before previous end time 260.61
Error: (262.2, 262.4, 'neck.') starts before previous end time 262.21
Error: (266.0, 266.01, 'keep') starts before previous end time 266.01
Error: (266.0, 266.1, 'it?') starts before previous end time 266.02
Error: (267.0, 267.2, 'it') starts before previous end time 267.01
Error: (278.6, 278.61, 'have?') starts before previous end time 278.61
Error: (278.6, 279.6, 'We') starts before previous end time 278.62
Error: (287.4, 287.5, 'like') starts before previous end time 287.40999999999997
Error: (289.0, 289.3, 'really') starts before previous end time 289.01
Error: (290.2, 290.7, 'I') starts before previous end time 290.21
Error: (290.9, 291.4, 'remove') starts before previous end time 290.90999999999997
Error: (294.0, 294.01, 'know.') starts before previous end time 294.01
Error: (294.0, 294.3, 'Do') starts before previous end time 294.02
Error: (298.6, 298.9, 'could') starts before previous end time 298.61
Error: (299.5, 299.7, 'kitchen') starts before previous end time 299.51
Error: (312.1, 313.1, 'if') starts before previous end time 312.11
Error: (313.4, 313.6, 'have') starts before previous end time 313.40999999999997
Error: (314.8, 314.9, 'be') starts before previous end time 314.81
Error: (319.4, 319.5, 'think') starts before previous end time 319.40999999999997
Error: (325.6, 325.7, 'bit') starts before previous end time 325.61
Error: (327.3, 327.6, 'place') starts before previous end time 327.31
Error: (339.5, 339.8, 'so.') starts before previous end time 339.51
Error: (340.9, 341.0, 'need') starts before previous end time 340.90999999999997
Error: (343.5, 343.7, 'move') starts before previous end time 343.51
Error: (348.9, 349.2, 'garbage') starts before previous end time 348.90999999999997
Error: (353.2, 354.4, 'no') starts before previous end time 353.21
Error: (355.5, 355.6, 'need') starts before previous end time 355.51
Error: (355.6, 356.4, 'put') starts before previous end time 355.61
Error: (359.8, 360.2, 'we') starts before previous end time 359.81
Error: (360.5, 360.6, 'in') starts before previous end time 360.51
Error: (362.8, 363.1, 'confused') starts before previous end time 362.81
Error: (363.7, 364.0, 'is') starts before previous end time 363.71
Error: (367.7, 368.0, 'Yeah.') starts before previous end time 367.71
Error: (368.9, 369.9, 'move') starts before previous end time 368.90999999999997
Error: (376.6, 376.9, 'just') starts before previous end time 376.61
Error: (379.6, 380.2, 'know.') starts before previous end time 379.61
Error: (380.4, 380.8, 'where') starts before previous end time 380.40999999999997
Error: (392.8, 392.9, 'put') starts before previous end time 392.81
Error: (392.9, 393.1, 'flower') starts before previous end time 392.90999999999997
Error: (394.8, 395.0, '1') starts before previous end time 394.81
Error: (398.1, 398.8, 'you') starts before previous end time 398.11
Error: (398.8, 398.9, 'because') starts before previous end time 398.81
Error: (407.3, 407.9, 'kind') starts before previous end time 407.31
/Users/joregan/Playing/hsi_google/hsi_4_0717_210_001_inter.json
Error: (17.8, 18.1, 'back') starts before previous end time 17.810000000000002
Error: (22.5, 22.6, 'be') starts before previous end time 22.51
Error: (24.3, 24.6, 'friends') starts before previous end time 24.310000000000002
Error: (38.4, 38.6, "it's") starts before previous end time 38.41
Error: (46.9, 47.0, 'a') starts before previous end time 46.91
Error: (50.2, 50.3, 'like') starts before previous end time 50.21
Error: (108.3, 108.9, 'White') starts before previous end time 108.31
Error: (128.1, 128.7, 'multiple') starts before previous end time 128.10999999999999
Error: (137.0, 137.3, 'couch.') starts before previous end time 137.01
Error: (222.3, 222.5, 'bit') starts before previous end time 222.31
Error: (259.0, 259.1, 'planning') starts before previous end time 259.01
Error: (278.8, 279.0, 'corner?') starts before previous end time 278.81
Error: (283.3, 283.5, 'odd') starts before previous end time 283.31
Error: (284.2, 284.4, 'place.') starts before previous end time 284.21
Error: (322.5, 322.9, 'I') starts before previous end time 322.51
Error: (329.7, 329.8, 'need?') starts before previous end time 329.71
Error: (340.2, 340.7, 'not') starts before previous end time 340.21
Error: (340.9, 341.0, 'kitchen.') starts before previous end time 340.90999999999997
Error: (374.9, 375.3, 'rug.') starts before previous end time 374.90999999999997
Error: (409.5, 409.7, 'very') starts before previous end time 409.51
Error: (414.0, 414.2, 'nice.') starts before previous end time 414.01
Error: (414.6, 414.9, 'I') starts before previous end time 414.61
Error: (415.4, 416.2, 'at') starts before previous end time 415.40999999999997
/Users/joregan/Playing/hsi_google/hsi_3_0715_227_004_inter.json
Error: (5.0, 5.1, 'doing') starts before previous end time 5.01
Error: (28.8, 29.2, 'come.') starts before previous end time 28.810000000000002
Error: (30.1, 30.2, 'look') starts before previous end time 30.110000000000003
Error: (30.5, 30.8, 'place') starts before previous end time 30.51
Error: (36.6, 36.7, 'can') starts before previous end time 36.61
Error: (37.0, 37.2, 'that,') starts before previous end time 37.01
Error: (37.7, 37.9, 'awesome.') starts before previous end time 37.71
Error: (48.8, 49.3, 'want') starts before previous end time 48.809999999999995
Error: (75.8, 75.81, 'it') starts before previous end time 75.81
Error: (75.8, 76.1, 'to,') starts before previous end time 75.82000000000001
Error: (112.0, 112.3, 'uh,') starts before previous end time 112.01
Error: (115.2, 115.6, 'to') starts before previous end time 115.21000000000001
Error: (123.9, 124.2, 'giving') starts before previous end time 123.91000000000001
Error: (126.3, 126.6, 'paint') starts before previous end time 126.31
Error: (167.3, 167.6, 'nice.') starts before previous end time 167.31
Error: (170.4, 170.7, 'uh') starts before previous end time 170.41
Error: (174.2, 174.5, 'just') starts before previous end time 174.20999999999998
Error: (176.3, 176.4, 'bit') starts before previous end time 176.31
Error: (181.2, 181.4, 'have') starts before previous end time 181.20999999999998
Error: (196.7, 197.2, 'ya.') starts before previous end time 196.70999999999998
Error: (204.1, 204.2, 'bit') starts before previous end time 204.10999999999999
Error: (207.7, 208.1, 'the') starts before previous end time 207.70999999999998
Error: (215.7, 216.0, 'But') starts before previous end time 215.70999999999998
Error: (217.1, 217.4, 'like') starts before previous end time 217.10999999999999
Error: (227.6, 228.2, 'Okay.') starts before previous end time 227.60999999999999
Error: (230.3, 230.6, 'would') starts before previous end time 230.31
Error: (257.1, 257.2, 'way') starts before previous end time 257.11
Error: (258.0, 258.3, 'dogs') starts before previous end time 258.01
Error: (296.6, 296.9, 'move') starts before previous end time 296.61
Error: (299.1, 299.5, 'Okay') starts before previous end time 299.11
Error: (318.3, 318.7, 'we') starts before previous end time 318.31
Error: (332.3, 332.7, 'that') starts before previous end time 332.31
Error: (342.1, 342.3, 'door') starts before previous end time 342.11
Error: (345.4, 345.5, 'have') starts before previous end time 345.40999999999997
Error: (371.4, 371.5, 'about') starts before previous end time 371.40999999999997
Error: (375.9, 376.1, 'move') starts before previous end time 375.90999999999997
Error: (381.8, 381.9, 'bit') starts before previous end time 381.81
Error: (397.7, 398.1, 'colors,') starts before previous end time 397.71
Error: (401.1, 401.2, 'this') starts before previous end time 401.11
Error: (415.0, 415.2, 'bit.') starts before previous end time 415.01
Error: (417.4, 417.8, 'life.') starts before previous end time 417.40999999999997
Error: (430.6, 431.0, 'of') starts before previous end time 430.61
Error: (447.0, 447.1, 'am') starts before previous end time 447.01
Error: (448.2, 448.5, 'there.') starts before previous end time 448.21
Error: (462.2, 462.21, 'bit') starts before previous end time 462.21
Error: (462.2, 462.4, 'of') starts before previous end time 462.21999999999997
Error: (465.2, 465.4, 'I') starts before previous end time 465.21
Error: (490.0, 490.1, 'of,') starts before previous end time 490.01
Error: (490.9, 491.3, 'Green') starts before previous end time 490.90999999999997
Error: (500.5, 500.6, 'bit') starts before previous end time 500.51
Error: (521.9, 522.2, 'an') starts before previous end time 521.91
Error: (522.2, 522.7, 'of,') starts before previous end time 522.21
Error: (553.4, 553.5, 'think') starts before previous end time 553.41
Error: (567.4, 567.7, 'paint') starts before previous end time 567.41
Error: (571.9, 572.0, 'about') starts before previous end time 571.91
/Users/joregan/Playing/hsi_google/hsi_2_0613_227_001_main.json
Error: (3.2, 3.3, 'want') starts before previous end time 3.21
Error: (3.3, 3.3099999999999996, 'to') starts before previous end time 3.3099999999999996
Error: (3.3, 3.4, 'do?') starts before previous end time 3.3199999999999994
Error: (15.3, 15.4, 'want') starts before previous end time 15.31
Error: (15.4, 15.6, 'to') starts before previous end time 15.41
Error: (29.7, 30.1, 'when') starts before previous end time 29.71
Error: (30.1, 30.2, 'start.') starts before previous end time 30.110000000000003
Error: (35.8, 35.9, 'to') starts before previous end time 35.809999999999995
Error: (38.6, 38.8, 'my') starts before previous end time 38.61
Error: (39.5, 39.9, 'bought') starts before previous end time 39.51
Error: (39.9, 40.3, 'actually.') starts before previous end time 39.91
Error: (40.8, 40.9, 'can') starts before previous end time 40.809999999999995
Error: (50.8, 51.0, 'both') starts before previous end time 50.809999999999995
Error: (56.9, 57.0, 'can') starts before previous end time 56.91
Error: (58.6, 58.8, 'just') starts before previous end time 58.61
Error: (59.3, 59.7, 'so') starts before previous end time 59.309999999999995
Error: (65.7, 66.2, 'this') starts before previous end time 65.71000000000001
Error: (70.5, 70.8, 'wall.') starts before previous end time 70.51
Error: (76.0, 76.2, 'can') starts before previous end time 76.01
Error: (76.2, 76.3, 'a') starts before previous end time 76.21000000000001
Error: (76.9, 77.0, 'right?') starts before previous end time 76.91000000000001
Error: (78.5, 79.1, 'you') starts before previous end time 78.51
Error: (82.2, 82.4, 'like') starts before previous end time 82.21000000000001
Error: (84.0, 84.2, 'actually') starts before previous end time 84.01
Error: (89.1, 89.6, 'night') starts before previous end time 89.11
Error: (97.5, 97.9, 'white') starts before previous end time 97.51
Error: (100.1, 100.2, 'kitchen') starts before previous end time 100.11
Error: (106.7, 106.9, 'I') starts before previous end time 106.71000000000001
Error: (113.8, 114.0, 'this') starts before previous end time 113.81
Error: (116.6, 116.61, 'go') starts before previous end time 116.61
Error: (116.6, 116.9, 'out.') starts before previous end time 116.62
Error: (125.9, 126.2, 'all') starts before previous end time 125.91000000000001
Error: (131.7, 131.8, 'have') starts before previous end time 131.70999999999998
Error: (151.7, 151.9, 'you') starts before previous end time 151.70999999999998
Error: (173.3, 173.5, 'and') starts before previous end time 173.31
Error: (175.3, 175.9, 'very') starts before previous end time 175.31
Error: (177.1, 177.4, 'break') starts before previous end time 177.10999999999999
Error: (178.6, 179.0, 'if') starts before previous end time 178.60999999999999
Error: (189.3, 189.5, 'got') starts before previous end time 189.31
Error: (191.0, 191.2, 'good') starts before previous end time 191.01
Error: (200.5, 200.6, 'can') starts before previous end time 200.51
Error: (200.6, 201.2, "it's") starts before previous end time 200.60999999999999
Error: (210.1, 210.4, 'me') starts before previous end time 210.10999999999999
Error: (220.0, 220.4, 'that') starts before previous end time 220.01
Error: (222.3, 223.3, 'in') starts before previous end time 222.31
Error: (224.7, 224.9, 'this') starts before previous end time 224.70999999999998
Error: (232.3, 232.5, 'to') starts before previous end time 232.31
Error: (241.7, 242.0, 'I') starts before previous end time 241.70999999999998
Error: (242.0, 242.1, 'the') starts before previous end time 242.01
Error: (243.8, 244.1, 'like') starts before previous end time 243.81
Error: (250.8, 251.1, 'So') starts before previous end time 250.81
Error: (251.3, 251.5, 'a') starts before previous end time 251.31
Error: (257.9, 258.3, 'won') starts before previous end time 257.90999999999997
Error: (258.3, 258.7, 'Oscar,') starts before previous end time 258.31
Error: (267.3, 267.6, 'it') starts before previous end time 267.31
Error: (271.5, 271.6, 'on') starts before previous end time 271.51
Error: (277.2, 277.3, 'want') starts before previous end time 277.21
Error: (279.1, 279.3, 'just') starts before previous end time 279.11
Error: (283.1, 283.5, 'about') starts before previous end time 283.11
Error: (285.3, 285.6, 'the') starts before previous end time 285.31
Error: (295.7, 295.8, 'off?') starts before previous end time 295.71
Error: (304.4, 304.5, 'ever') starts before previous end time 304.40999999999997
Error: (329.6, 329.7, 'know') starts before previous end time 329.61
Error: (330.0, 330.3, 'the') starts before previous end time 330.01
Error: (335.6, 336.4, 'just') starts before previous end time 335.61
Error: (358.1, 358.4, 'this') starts before previous end time 358.11
Error: (361.8, 362.1, 'head') starts before previous end time 361.81
Error: (364.3, 364.9, 'freely') starts before previous end time 364.31
Error: (370.6, 371.0, 'already') starts before previous end time 370.61
Error: (371.8, 371.81, 'know.') starts before previous end time 371.81
Error: (386.6, 386.9, 'cut') starts before previous end time 386.61
Error: (393.1, 393.2, 'know') starts before previous end time 393.11
Error: (403.7, 404.4, 'like') starts before previous end time 403.71
Error: (404.6, 405.2, 'glasses,') starts before previous end time 404.61
Error: (406.7, 407.1, 'on') starts before previous end time 406.71
Error: (409.1, 409.11, 'know.') starts before previous end time 409.11
/Users/joregan/Playing/hsi_google/hsi_4_0716_210_001_main.json
Error: (45.0, 45.2, 'from') starts before previous end time 45.01
Error: (51.9, 52.1, 'like') starts before previous end time 51.91
Error: (66.1, 67.5, 'and') starts before previous end time 66.11
Error: (77.0, 77.1, 'also') starts before previous end time 77.01
Error: (77.8, 78.0, 'have') starts before previous end time 77.81
Error: (82.4, 82.6, 'fun') starts before previous end time 82.41000000000001
Error: (95.0, 95.2, 'direction') starts before previous end time 95.01
Error: (106.0, 106.1, 'a') starts before previous end time 106.01
Error: (113.5, 113.7, 'like') starts before previous end time 113.51
Error: (121.1, 121.3, 'think') starts before previous end time 121.11
Error: (139.2, 139.3, 'them') starts before previous end time 139.20999999999998
Error: (140.2, 140.4, "it's") starts before previous end time 140.20999999999998
Error: (149.5, 149.8, 'how') starts before previous end time 149.51
Error: (150.2, 151.1, 'but') starts before previous end time 150.20999999999998
Error: (163.5, 163.7, 'like') starts before previous end time 163.51
Error: (169.0, 169.3, 'take') starts before previous end time 169.01
Error: (177.6, 177.60999999999999, 'of') starts before previous end time 177.60999999999999
Error: (177.6, 177.8, 'you.') starts before previous end time 177.61999999999998
Error: (179.3, 180.3, 'Yeah.') starts before previous end time 179.31
Error: (182.3, 182.7, 'pose.') starts before previous end time 182.31
Error: (199.1, 199.3, 'life.') starts before previous end time 199.10999999999999
Error: (207.6, 208.1, 'sad.') starts before previous end time 207.60999999999999
Error: (237.8, 238.5, 'plants') starts before previous end time 237.81
Error: (239.1, 239.3, 'roof') starts before previous end time 239.10999999999999
Error: (253.9, 254.1, "it's") starts before previous end time 253.91
Error: (255.0, 255.1, 'way') starts before previous end time 255.01
Error: (262.9, 263.3, 'empty') starts before previous end time 262.90999999999997
Error: (263.6, 264.7, "It's") starts before previous end time 263.61
Error: (281.2, 281.4, 'my') starts before previous end time 281.21
Error: (284.7, 284.9, 'think?') starts before previous end time 284.71
Error: (288.4, 289.0, 'out') starts before previous end time 288.40999999999997
Error: (290.7, 290.8, 'the') starts before previous end time 290.71
Error: (294.4, 294.7, 'have') starts before previous end time 294.40999999999997
Error: (303.9, 304.2, 'true') starts before previous end time 303.90999999999997
Error: (306.8, 307.0, 'pillows.') starts before previous end time 306.81
Error: (309.7, 309.71, 'know') starts before previous end time 309.71
Error: (309.7, 310.0, 'about') starts before previous end time 309.71999999999997
Error: (326.8, 326.81, 'much.') starts before previous end time 326.81
Error: (326.8, 327.6, 'I') starts before previous end time 326.82
Error: (343.7, 344.4, 'floors.') starts before previous end time 343.71
Error: (344.9, 345.4, "that's") starts before previous end time 344.90999999999997
Error: (353.5, 353.7, 'kitchen') starts before previous end time 353.51
Error: (354.0, 354.4, 'but') starts before previous end time 354.01
Error: (356.9, 357.2, 'looking') starts before previous end time 356.90999999999997
Error: (373.1, 373.3, '1.') starts before previous end time 373.11
Error: (384.1, 384.4, 'really') starts before previous end time 384.11
Error: (391.2, 391.3, "it's") starts before previous end time 391.21
Error: (394.6, 394.7, 'not') starts before previous end time 394.61
Error: (416.8, 416.9, 'the') starts before previous end time 416.81
/Users/joregan/Playing/hsi_google/hsi_4_0717_211_002_main.json
Error: (26.4, 26.6, 'though.') starts before previous end time 26.41
Error: (27.2, 27.5, 'the') starts before previous end time 27.21
Error: (41.6, 41.7, 'know') starts before previous end time 41.61
Error: (42.1, 42.3, 'with') starts before previous end time 42.11
Error: (82.7, 82.8, "can't") starts before previous end time 82.71000000000001
Error: (90.9, 91.2, 'why') starts before previous end time 90.91000000000001
Error: (120.7, 120.8, 'be') starts before previous end time 120.71000000000001
Error: (128.5, 128.6, 'good') starts before previous end time 128.51
Error: (143.2, 143.6, 'Okay.') starts before previous end time 143.20999999999998
Error: (161.2, 161.4, 'want') starts before previous end time 161.20999999999998
Error: (162.3, 162.9, 'Yeah.') starts before previous end time 162.31
Error: (173.3, 173.4, 'be') starts before previous end time 173.31
Error: (185.1, 185.2, 'back') starts before previous end time 185.10999999999999
Error: (187.1, 187.2, 'Yeah,') starts before previous end time 187.10999999999999
Error: (189.6, 189.9, 'When') starts before previous end time 189.60999999999999
Error: (198.6, 198.9, 'leave') starts before previous end time 198.60999999999999
Error: (209.7, 209.9, 'look') starts before previous end time 209.70999999999998
Error: (212.4, 212.7, 'pocket') starts before previous end time 212.41
Error: (217.2, 217.4, 'by') starts before previous end time 217.20999999999998
Error: (219.9, 220.1, 'table.') starts before previous end time 219.91
Error: (233.2, 233.5, 'apartment.') starts before previous end time 233.20999999999998
Error: (234.7, 234.9, 'take.') starts before previous end time 234.70999999999998
Error: (237.2, 237.6, 'I') starts before previous end time 237.20999999999998
Error: (237.6, 237.9, 'cuz') starts before previous end time 237.60999999999999
Error: (243.1, 243.3, 'thing.') starts before previous end time 243.10999999999999
Error: (265.7, 265.8, 'want') starts before previous end time 265.71
Error: (266.8, 267.0, 'panda.') starts before previous end time 266.81
Error: (271.2, 271.4, 'buy') starts before previous end time 271.21
Error: (273.1, 273.6, 'visiting') starts before previous end time 273.11
Error: (289.9, 290.4, 'scary') starts before previous end time 289.90999999999997
Error: (292.9, 293.4, 'So') starts before previous end time 292.90999999999997
Error: (294.1, 294.3, 'bring') starts before previous end time 294.11
Error: (294.6, 294.8, 'is') starts before previous end time 294.61
Error: (303.9, 304.4, 'painting') starts before previous end time 303.90999999999997
Error: (305.3, 305.9, 'bases.') starts before previous end time 305.31
Error: (314.3, 314.4, 'you') starts before previous end time 314.31
Error: (316.7, 316.9, 'also') starts before previous end time 316.71
Error: (335.7, 335.71, 'good') starts before previous end time 335.71
Error: (335.7, 335.8, 'day.') starts before previous end time 335.71999999999997
/Users/joregan/Playing/hsi_google/hsi_3_0715_227_001_main.json
Error: (4.4, 4.9, 'Okay,') starts before previous end time 4.41
Error: (10.2, 10.4, 'so') starts before previous end time 10.209999999999999
Error: (10.4, 11.1, 'You') starts before previous end time 10.41
Error: (24.5, 25.1, 'I') starts before previous end time 24.51
Error: (27.9, 29.2, 'Yeah,') starts before previous end time 27.91
Error: (33.9, 34.3, 'pleased') starts before previous end time 33.91
Error: (41.6, 42.1, 'furniture') starts before previous end time 41.61
Error: (47.1, 47.9, 'do') starts before previous end time 47.11
Error: (48.1, 48.2, 'try') starts before previous end time 48.11
Error: (57.1, 57.5, 'go') starts before previous end time 57.11
Error: (97.0, 98.1, 'but') starts before previous end time 97.01
Error: (98.2, 98.4, 'is') starts before previous end time 98.21000000000001
Error: (98.7, 99.0, 'I') starts before previous end time 98.71000000000001
Error: (111.8, 112.5, 'of') starts before previous end time 111.81
Error: (114.5, 114.7, 'little') starts before previous end time 114.51
Error: (120.9, 121.0, 'bit') starts before previous end time 120.91000000000001
Error: (122.3, 122.31, 'to') starts before previous end time 122.31
Error: (122.3, 122.4, 'get') starts before previous end time 122.32000000000001
Error: (124.2, 124.3, 'bit') starts before previous end time 124.21000000000001
Error: (141.8, 141.9, 'that.') starts before previous end time 141.81
Error: (146.2, 146.5, 'I') starts before previous end time 146.20999999999998
Error: (151.6, 151.60999999999999, 'know,') starts before previous end time 151.60999999999999
Error: (151.6, 152.1, 'hot.') starts before previous end time 151.61999999999998
Error: (156.1, 156.6, 'cold') starts before previous end time 156.10999999999999
Error: (195.0, 195.5, 'and') starts before previous end time 195.01
Error: (196.9, 197.1, 'floor') starts before previous end time 196.91
Error: (198.6, 198.7, 'like') starts before previous end time 198.60999999999999
Error: (215.0, 215.6, 'where') starts before previous end time 215.01
Error: (215.6, 215.60999999999999, 'could') starts before previous end time 215.60999999999999
Error: (215.6, 216.3, 'buy') starts before previous end time 215.61999999999998
Error: (216.8, 217.2, 'online.') starts before previous end time 216.81
Error: (222.7, 222.9, 'like.') starts before previous end time 222.70999999999998
Error: (233.8, 234.3, "it's") starts before previous end time 233.81
Error: (244.6, 246.0, 'hot') starts before previous end time 244.60999999999999
Error: (250.8, 251.0, 'bit') starts before previous end time 250.81
Error: (253.0, 253.1, 'on') starts before previous end time 253.01
Error: (253.7, 254.8, 'Not') starts before previous end time 253.70999999999998
Error: (258.3, 258.9, 'Thank') starts before previous end time 258.31
Error: (265.3, 266.3, 'Yeah,') starts before previous end time 265.31
Error: (267.6, 267.9, 'time') starts before previous end time 267.61
Error: (275.1, 276.0, 'Yeah.') starts before previous end time 275.11
Error: (288.5, 289.0, 'beautiful') starts before previous end time 288.51
Error: (290.2, 290.6, 'river') starts before previous end time 290.21
Error: (304.8, 305.2, 'this') starts before previous end time 304.81
Error: (307.5, 308.2, 'But') starts before previous end time 307.51
Error: (311.4, 312.3, 'then') starts before previous end time 311.40999999999997
Error: (313.8, 314.2, 'this') starts before previous end time 313.81
Error: (328.8, 328.81, 'know.') starts before previous end time 328.81
Error: (345.0, 345.7, 'memories') starts before previous end time 345.01
Error: (355.5, 355.7, 'and') starts before previous end time 355.51
Error: (359.8, 360.1, 'what') starts before previous end time 359.81
Error: (386.1, 386.4, 'this') starts before previous end time 386.11
Error: (389.8, 390.2, "he's") starts before previous end time 389.81
Error: (394.5, 394.7, 'those') starts before previous end time 394.51
Error: (401.5, 402.0, "he's") starts before previous end time 401.51
Error: (402.0, 402.1, 'on') starts before previous end time 402.01
Error: (409.0, 409.6, 'But') starts before previous end time 409.01
Error: (411.2, 411.4, 'it') starts before previous end time 411.21
Error: (452.8, 453.2, 'time,') starts before previous end time 452.81
Error: (453.4, 454.4, 'my') starts before previous end time 453.40999999999997
Error: (461.8, 463.2, 'uh,') starts before previous end time 461.81
Error: (467.2, 467.3, 'think') starts before previous end time 467.21
Error: (469.1, 469.2, 'this') starts before previous end time 469.11
Error: (471.3, 471.4, 'from') starts before previous end time 471.31
Error: (487.9, 488.3, 'Thank') starts before previous end time 487.90999999999997
Error: (509.2, 509.5, 'buy') starts before previous end time 509.21
Error: (511.4, 511.7, 'it') starts before previous end time 511.40999999999997
Error: (519.6, 519.8, 'buy') starts before previous end time 519.61
Error: (521.1, 522.5, 'I') starts before previous end time 521.11
Error: (523.4, 523.8, 'for') starts before previous end time 523.41
Error: (525.9, 526.1, 'a') starts before previous end time 525.91
Error: (532.4, 533.1, 'Thank') starts before previous end time 532.41
Error: (533.1, 533.3, 'for') starts before previous end time 533.11
/Users/joregan/Playing/hsi_google/hsi_2_0613_209_001_main.json
Error: (14.0, 14.4, 'right?') starts before previous end time 14.01
Error: (15.8, 16.0, 'right?') starts before previous end time 15.81
Error: (30.2, 30.5, 'wall.') starts before previous end time 30.21
Error: (31.3, 31.4, 'can') starts before previous end time 31.310000000000002
Error: (32.9, 33.6, 'stuck') starts before previous end time 32.91
Error: (33.8, 34.0, 'wall.') starts before previous end time 33.809999999999995
Error: (36.2, 36.6, 'not') starts before previous end time 36.21
Error: (41.4, 41.5, 'like') starts before previous end time 41.41
Error: (47.0, 47.3, 'whole') starts before previous end time 47.01
Error: (47.7, 47.9, 'have') starts before previous end time 47.71
Error: (56.5, 56.9, 'relax') starts before previous end time 56.51
Error: (58.4, 58.6, 'want') starts before previous end time 58.41
Error: (59.6, 59.7, 'here') starts before previous end time 59.61
Error: (66.3, 67.2, 'walls') starts before previous end time 66.31
Error: (69.2, 69.5, 'top') starts before previous end time 69.21000000000001
Error: (85.9, 86.4, 'I') starts before previous end time 85.91000000000001
Error: (104.1, 104.5, 'want') starts before previous end time 104.11
Error: (104.5, 104.6, 'do') starts before previous end time 104.51
Error: (107.7, 107.9, 'see') starts before previous end time 107.71000000000001
Error: (108.4, 108.41000000000001, 'time') starts before previous end time 108.41000000000001
Error: (108.4, 109.2, 'instead') starts before previous end time 108.42000000000002
Error: (139.0, 139.2, 'to') starts before previous end time 139.01
Error: (152.1, 152.8, 'clean') starts before previous end time 152.10999999999999
Error: (177.8, 178.4, 'cabinet') starts before previous end time 177.81
Error: (182.2, 182.6, 'each') starts before previous end time 182.20999999999998
Error: (182.6, 183.5, 'like') starts before previous end time 182.60999999999999
Error: (183.9, 184.1, 'better,') starts before previous end time 183.91
Error: (184.6, 184.9, 'it') starts before previous end time 184.60999999999999
Error: (184.9, 185.0, 'you.') starts before previous end time 184.91
Error: (189.8, 190.1, 'things') starts before previous end time 189.81
Error: (191.5, 191.8, 'TV.') starts before previous end time 191.51
Error: (193.6, 193.7, 'my') starts before previous end time 193.60999999999999
Error: (209.1, 209.7, 'show') starts before previous end time 209.10999999999999
Error: (211.6, 212.1, 'so') starts before previous end time 211.60999999999999
Error: (226.8, 227.3, 'me') starts before previous end time 226.81
Error: (228.0, 228.01, 'take') starts before previous end time 228.01
Error: (228.0, 228.1, 'the') starts before previous end time 228.01999999999998
Error: (228.7, 228.8, 'my') starts before previous end time 228.70999999999998
Error: (253.9, 254.1, 'other') starts before previous end time 253.91
Error: (260.8, 261.3, 'plants') starts before previous end time 260.81
Error: (266.7, 267.0, 'want') starts before previous end time 266.71
Error: (270.3, 270.6, 'the') starts before previous end time 270.31
Error: (288.2, 288.5, 'even') starts before previous end time 288.21
Error: (294.6, 295.0, 'yes.') starts before previous end time 294.61
Error: (295.3, 295.31, 'a') starts before previous end time 295.31
Error: (295.3, 295.7, 'furnace') starts before previous end time 295.32
Error: (295.9, 296.0, 'Heat.') starts before previous end time 295.90999999999997
Error: (310.9, 311.4, 'sad,') starts before previous end time 310.90999999999997
Error: (313.3, 313.6, 'on') starts before previous end time 313.31
Error: (313.6, 314.1, 'emotions.') starts before previous end time 313.61
Error: (335.0, 335.4, 'water') starts before previous end time 335.01
Error: (335.7, 336.6, 'So') starts before previous end time 335.71
Error: (347.0, 347.1, 'at') starts before previous end time 347.01
Error: (353.9, 354.6, 'It') starts before previous end time 353.90999999999997
Error: (378.9, 379.1, 'the') starts before previous end time 378.90999999999997
Error: (385.7, 386.4, 'cozy,') starts before previous end time 385.71
Error: (386.8, 386.9, 'change') starts before previous end time 386.81
Error: (389.6, 389.7, 'some') starts before previous end time 389.61
Error: (393.7, 394.0, 'so') starts before previous end time 393.71
Error: (395.8, 396.1, 'Thank') starts before previous end time 395.81
Error: (397.0, 397.4, 'some') starts before previous end time 397.01
Error: (401.8, 402.4, 'Sit') starts before previous end time 401.81
Error: (403.7, 404.1, 'pizza') starts before previous end time 403.71
Error: (424.4, 424.7, 'can') starts before previous end time 424.40999999999997
Error: (452.0, 452.5, "I'm") starts before previous end time 452.01
/Users/joregan/Playing/hsi_google/hsi_4_0716_222_003_main.json
Error: (13.1, 13.5, 'the') starts before previous end time 13.11
Error: (20.3, 20.7, 'you') starts before previous end time 20.310000000000002
Error: (20.7, 21.0, 'take') starts before previous end time 20.71
Error: (25.3, 25.6, 'the') starts before previous end time 25.310000000000002
Error: (40.6, 41.6, 'and') starts before previous end time 40.61
Error: (42.7, 43.0, 'corner') starts before previous end time 42.71
Error: (51.7, 51.8, 'that') starts before previous end time 51.71
Error: (60.2, 60.3, 'know') starts before previous end time 60.21
Error: (61.5, 61.9, 'maybe') starts before previous end time 61.51
Error: (62.6, 63.6, 'the,') starts before previous end time 62.61
Error: (77.4, 77.7, 'over') starts before previous end time 77.41000000000001
Error: (80.7, 80.9, 'put') starts before previous end time 80.71000000000001
Error: (85.8, 86.2, 'so') starts before previous end time 85.81
Error: (100.4, 100.5, 'same') starts before previous end time 100.41000000000001
Error: (108.1, 108.3, 'say') starts before previous end time 108.11
Error: (111.0, 111.4, 'if') starts before previous end time 111.01
Error: (121.8, 122.1, 'turn') starts before previous end time 121.81
Error: (126.3, 126.4, 'get') starts before previous end time 126.31
Error: (127.2, 127.6, 'they') starts before previous end time 127.21000000000001
Error: (128.5, 128.51, 'can') starts before previous end time 128.51
Error: (128.5, 128.6, 'put') starts before previous end time 128.51999999999998
Error: (128.8, 129.0, 'wall') starts before previous end time 128.81
Error: (130.5, 130.8, 'like') starts before previous end time 130.51
Error: (131.8, 132.2, 'and') starts before previous end time 131.81
Error: (138.2, 138.3, 'here') starts before previous end time 138.20999999999998
Error: (140.8, 140.9, 'like') starts before previous end time 140.81
Error: (145.4, 145.5, 'like') starts before previous end time 145.41
Error: (173.8, 174.1, 'think') starts before previous end time 173.81
Error: (177.1, 177.5, 'I') starts before previous end time 177.10999999999999
Error: (181.8, 182.5, 'pilgrims') starts before previous end time 181.81
Error: (183.0, 183.2, "It's") starts before previous end time 183.01
Error: (188.3, 189.0, 'but') starts before previous end time 188.31
Error: (191.0, 191.3, 'kitchen.') starts before previous end time 191.01
Error: (197.0, 197.2, 'say') starts before previous end time 197.01
Error: (199.2, 199.5, 'classic') starts before previous end time 199.20999999999998
Error: (203.4, 203.7, 'work') starts before previous end time 203.41
Error: (209.3, 210.7, 'better') starts before previous end time 209.31
Error: (215.0, 215.4, 'paintings') starts before previous end time 215.01
Error: (217.3, 217.6, 'other') starts before previous end time 217.31
Error: (224.5, 224.7, 'wall.') starts before previous end time 224.51
Error: (231.0, 231.3, 'the') starts before previous end time 231.01
Error: (246.2, 246.3, 'keep') starts before previous end time 246.20999999999998
Error: (247.1, 247.2, 'the') starts before previous end time 247.10999999999999
Error: (248.6, 248.9, 'with') starts before previous end time 248.60999999999999
Error: (250.5, 250.8, 'have') starts before previous end time 250.51
Error: (262.7, 262.8, 'to') starts before previous end time 262.71
Error: (264.3, 264.6, 'corner,') starts before previous end time 264.31
Error: (269.8, 270.1, 'couch') starts before previous end time 269.81
Error: (281.4, 281.8, 'which') starts before previous end time 281.40999999999997
Error: (292.6, 292.9, 'buy') starts before previous end time 292.61
Error: (292.9, 293.4, 'basket.') starts before previous end time 292.90999999999997
Error: (297.8, 298.0, 'with') starts before previous end time 297.81
Error: (301.0, 301.3, 'nice.') starts before previous end time 301.01
Error: (302.7, 303.1, 'what') starts before previous end time 302.71
Error: (303.2, 303.4, "It's") starts before previous end time 303.21
Error: (303.4, 303.6, 'to') starts before previous end time 303.40999999999997
Error: (310.0, 310.3, 'so') starts before previous end time 310.01
Error: (310.5, 310.7, 'have') starts before previous end time 310.51
Error: (336.4, 336.5, 'have') starts before previous end time 336.40999999999997
Error: (343.3, 343.6, 'up') starts before previous end time 343.31
Error: (354.6, 354.8, 'book') starts before previous end time 354.61
Error: (359.4, 359.6, 'and') starts before previous end time 359.40999999999997
Error: (373.2, 373.9, 'light') starts before previous end time 373.21
Error: (382.7, 383.1, '2') starts before previous end time 382.71
Error: (383.6, 385.0, 'Your') starts before previous end time 383.61
Error: (388.8, 389.1, 'desk.') starts before previous end time 388.81
Error: (399.8, 400.7, 'you') starts before previous end time 399.81
Error: (404.5, 404.6, 'can') starts before previous end time 404.51
Error: (405.9, 406.1, 'couch,') starts before previous end time 405.90999999999997
Error: (407.8, 408.0, 'get') starts before previous end time 407.81
Error: (429.7, 430.0, 'and') starts before previous end time 429.71
Error: (432.9, 433.0, 'corner,') starts before previous end time 432.90999999999997
Error: (434.1, 434.5, 'your') starts before previous end time 434.11
/Users/joregan/Playing/hsi_google/hsi_4_0716_227_003_inter.json
Error: (6.3, 7.2, 'and') starts before previous end time 6.31
Error: (23.6, 23.9, 'a') starts before previous end time 23.610000000000003
Error: (23.9, 24.1, 'great') starts before previous end time 23.91
Error: (55.0, 55.2, 'talk') starts before previous end time 55.01
Error: (71.4, 71.6, 'I') starts before previous end time 71.41000000000001
Error: (99.4, 99.6, "it's") starts before previous end time 99.41000000000001
Error: (111.3, 111.7, 'for') starts before previous end time 111.31
Error: (127.4, 127.5, 'course.') starts before previous end time 127.41000000000001
Error: (132.6, 132.8, 'those') starts before previous end time 132.60999999999999
Error: (133.8, 134.1, 'opened') starts before previous end time 133.81
Error: (135.9, 136.1, 'in.') starts before previous end time 135.91
Error: (142.2, 142.5, 'here.') starts before previous end time 142.20999999999998
Error: (153.7, 153.9, 'so.') starts before previous end time 153.70999999999998
Error: (173.1, 173.6, 'yes.') starts before previous end time 173.10999999999999
/Users/joregan/Playing/hsi_google/hsi_6_0718_210_001_inter.json
Error: (2.0, 2.2, 'you') starts before previous end time 2.01
Error: (9.8, 10.5, 'okay.') starts before previous end time 9.81
Error: (61.7, 61.8, 'start?') starts before previous end time 61.71
Error: (98.2, 98.6, 'any.') starts before previous end time 98.21000000000001
Error: (102.2, 102.3, 'them') starts before previous end time 102.21000000000001
Error: (117.8, 118.0, 'hate') starts before previous end time 117.81
Error: (123.8, 124.3, 'when') starts before previous end time 123.81
Error: (137.1, 137.2, 'make') starts before previous end time 137.10999999999999
Error: (138.7, 138.70999999999998, 'little') starts before previous end time 138.70999999999998
Error: (138.7, 138.9, 'bit') starts before previous end time 138.71999999999997
Error: (142.0, 142.2, 'about') starts before previous end time 142.01
Error: (145.9, 146.4, 'the') starts before previous end time 146.1
Error: (156.2, 156.4, 'sense') starts before previous end time 156.20999999999998
Error: (167.2, 167.5, "government's") starts before previous end time 167.20999999999998
Error: (167.7, 167.8, 'get') starts before previous end time 167.70999999999998
Error: (179.8, 180.1, 'Oh,') starts before previous end time 179.81
Error: (184.3, 184.6, 'here.') starts before previous end time 184.31
Error: (187.6, 187.8, 'this') starts before previous end time 187.60999999999999
Error: (192.7, 193.1, 'kind') starts before previous end time 192.70999999999998
Error: (196.8, 197.0, 'place.') starts before previous end time 196.81
Error: (223.1, 223.3, 'Do') starts before previous end time 223.10999999999999
Error: (223.5, 223.8, 'preferred') starts before previous end time 223.51
Error: (228.0, 228.1, 'like') starts before previous end time 228.01
Error: (228.5, 228.6, 'more?') starts before previous end time 228.51
Error: (232.0, 232.1, 'get') starts before previous end time 232.01
Error: (236.3, 236.9, 'loving') starts before previous end time 236.31
Error: (246.8, 247.0, 'same') starts before previous end time 246.81
Error: (247.6, 247.8, 'love') starts before previous end time 247.60999999999999
Error: (254.5, 254.6, 'me') starts before previous end time 254.51
Error: (255.0, 255.8, 'they') starts before previous end time 255.01
Error: (255.9, 256.7, 'to') starts before previous end time 255.91
Error: (257.9, 257.90999999999997, 'need') starts before previous end time 257.90999999999997
Error: (257.9, 258.0, 'to') starts before previous end time 257.91999999999996
Error: (259.7, 259.71, 'morning.') starts before previous end time 259.71
Error: (259.7, 260.5, 'Oh') starts before previous end time 259.71999999999997
Error: (262.7, 263.0, "that's") starts before previous end time 262.71
Error: (265.8, 266.0, 'like,') starts before previous end time 265.81
Error: (271.6, 271.7, 'because') starts before previous end time 271.61
Error: (279.1, 279.4, 'this') starts before previous end time 279.11
Error: (280.5, 281.2, 'also') starts before previous end time 280.51
Error: (281.4, 281.7, 'random.') starts before previous end time 281.40999999999997
Error: (291.9, 292.2, 'know.') starts before previous end time 291.90999999999997
Error: (308.0, 308.2, 'off.') starts before previous end time 308.01
Error: (309.2, 309.9, 'if') starts before previous end time 309.21
Error: (318.8, 318.9, 'get') starts before previous end time 318.81
Error: (320.6, 320.9, 'going') starts before previous end time 320.61
Error: (320.9, 321.1, 'like') starts before previous end time 320.90999999999997
Error: (322.1, 322.3, 'no,') starts before previous end time 322.11
Error: (330.0, 330.2, "that's") starts before previous end time 330.01
Error: (333.6, 333.7, 'be') starts before previous end time 333.61
Error: (334.2, 334.5, "government's") starts before previous end time 334.21
Error: (341.4, 341.7, 'dumpsters') starts before previous end time 341.40999999999997
Error: (343.3, 343.5, 'from') starts before previous end time 343.31
Error: (344.4, 344.6, 'Yeah.') starts before previous end time 344.40999999999997
Error: (344.4, 345.5, "Don't") starts before previous end time 344.6
Error: (364.6, 365.0, 'Oh') starts before previous end time 364.61
Error: (372.1, 372.3, 'get') starts before previous end time 372.11
Error: (377.8, 378.0, 'the') starts before previous end time 377.81
Error: (393.4, 393.8, 'you') starts before previous end time 393.40999999999997
Error: (396.7, 396.9, 'weird') starts before previous end time 396.71
Error: (402.0, 402.2, 'of') starts before previous end time 402.01
Error: (403.0, 403.6, 'Oh') starts before previous end time 403.01
Error: (426.0, 426.01, 'to') starts before previous end time 426.01
Error: (426.0, 426.2, 'take') starts before previous end time 426.02
Error: (427.4, 427.6, 'money,') starts before previous end time 427.40999999999997
Error: (433.1, 433.11, 'keep') starts before previous end time 433.11
Error: (433.1, 433.8, 'the,') starts before previous end time 433.12
Error: (437.1, 437.6, 'from') starts before previous end time 437.11
Error: (465.9, 466.1, 'climb') starts before previous end time 465.90999999999997
Error: (477.5, 477.9, 'Trash') starts before previous end time 477.51
Error: (481.5, 481.8, 'off,') starts before previous end time 481.51
Error: (493.3, 493.7, 'empty') starts before previous end time 493.31
Error: (494.0, 494.4, 'I') starts before previous end time 494.01
Error: (494.6, 494.7, 'the') starts before previous end time 494.61
Error: (498.0, 498.3, 'took') starts before previous end time 498.01
Error: (531.6, 532.4, 'Jim.') starts before previous end time 531.61
Error: (537.0, 537.1, '1?') starts before previous end time 537.01
Error: (566.8, 566.9, 'for') starts before previous end time 566.81
Error: (566.9, 567.4, 'Yeah,') starts before previous end time 566.91
Error: (567.5, 567.8, 'I') starts before previous end time 567.51
Error: (568.1, 568.3, 'to') starts before previous end time 568.11
Error: (579.8, 579.9, 'much.') starts before previous end time 579.81
/Users/joregan/Playing/hsi_google/hsi_5_0718_211_003_inter.json
Error: (3.7, 3.71, 'of') starts before previous end time 3.71
Error: (3.7, 4.1, 'a') starts before previous end time 3.7199999999999998
Error: (5.4, 5.6, 'prefer') starts before previous end time 5.41
Error: (7.9, 8.2, 'the') starts before previous end time 7.91
Error: (29.1, 29.4, 'moved') starts before previous end time 29.110000000000003
Error: (31.9, 32.3, 'really') starts before previous end time 31.91
Error: (32.3, 32.4, 'this') starts before previous end time 32.309999999999995
Error: (33.8, 33.809999999999995, 'any') starts before previous end time 33.809999999999995
Error: (33.8, 34.7, 'advice') starts before previous end time 33.81999999999999
Error: (124.6, 124.8, 'prefer') starts before previous end time 124.61
Error: (161.1, 161.3, 'can') starts before previous end time 161.10999999999999
Error: (196.2, 196.3, 'think') starts before previous end time 196.20999999999998
Error: (214.5, 215.4, 'interfere') starts before previous end time 214.51
Error: (260.1, 261.1, 'Yeah.') starts before previous end time 260.11
Error: (291.6, 291.7, 'mean?') starts before previous end time 291.61
Error: (370.2, 370.3, 'to') starts before previous end time 370.21
Error: (406.6, 407.0, 'oh,') starts before previous end time 406.8
Error: (442.3, 442.7, 'So,') starts before previous end time 442.31
Error: (443.2, 443.4, 'give') starts before previous end time 443.21
Error: (444.5, 444.6, 'I') starts before previous end time 444.51
Error: (453.0, 453.9, 'favorite') starts before previous end time 453.01
Error: (495.8, 496.3, 'then') starts before previous end time 495.81
Error: (496.8, 497.2, 'painting') starts before previous end time 496.81
Error: (500.6, 500.7, 'see,') starts before previous end time 500.61
Error: (505.1, 505.2, 'place') starts before previous end time 505.11
Error: (522.5, 522.7, 'ceiling.') starts before previous end time 522.51
Error: (555.2, 555.4, 'it') starts before previous end time 555.21
Error: (555.4, 555.41, 'be') starts before previous end time 555.41
Error: (555.4, 555.6, 'good') starts before previous end time 555.42
Error: (607.6, 608.0, 'that') starts before previous end time 607.61
Error: (609.2, 610.4, 'I') starts before previous end time 609.21
Error: (611.8, 612.1, 'with') starts before previous end time 611.81
Maximum timestamp in Textgrid changed from (612.4) to (612.41)
Textgrid has a max timestamp of (612.41) but tier has (612.4)
/Users/joregan/Playing/hsi_google/hsi_7_0719_209_001_inter.json
Error: (20.7, 20.8, 'nice') starts before previous end time 20.71
Error: (29.7, 30.8, 'on') starts before previous end time 29.71
Error: (47.2, 47.5, 'more') starts before previous end time 47.21
Error: (48.6, 49.2, 'your') starts before previous end time 48.61
Error: (56.4, 56.8, 'it') starts before previous end time 56.41
Error: (102.4, 102.8, 'told') starts before previous end time 102.7
Error: (110.4, 111.1, 'So') starts before previous end time 110.41000000000001
Error: (111.2, 111.5, "it's") starts before previous end time 111.21000000000001
Error: (115.5, 115.6, 'the') starts before previous end time 115.51
Error: (115.6, 115.8, '1?') starts before previous end time 115.61
Error: (135.3, 135.7, "it's") starts before previous end time 135.31
Error: (140.1, 141.1, 'I') starts before previous end time 140.2
Error: (142.2, 142.4, 'the') starts before previous end time 142.20999999999998
Error: (143.4, 143.8, 'ugly') starts before previous end time 143.41
Error: (147.2, 147.4, 'is') starts before previous end time 147.20999999999998
Error: (150.0, 150.2, 'a') starts before previous end time 150.01
Error: (157.5, 158.0, 'of') starts before previous end time 157.51
Error: (158.3, 158.6, 'a') starts before previous end time 158.31
Error: (160.2, 160.4, 'is') starts before previous end time 160.20999999999998
Error: (161.3, 161.9, 'uh') starts before previous end time 161.31
Error: (175.2, 175.4, 'only') starts before previous end time 175.20999999999998
Error: (187.6, 187.8, 'the') starts before previous end time 187.60999999999999
Error: (208.1, 208.4, 'play') starts before previous end time 208.10999999999999
Error: (208.7, 208.8, 'bit') starts before previous end time 208.70999999999998
Error: (235.7, 235.9, 'flat.') starts before previous end time 235.70999999999998
Error: (247.7, 248.5, 'I') starts before previous end time 247.70999999999998
Error: (248.5, 248.8, 'all') starts before previous end time 248.51
Error: (269.2, 269.5, 'that') starts before previous end time 269.21
Error: (272.8, 273.1, 'the') starts before previous end time 272.81
Error: (283.6, 283.9, 'uh,') starts before previous end time 283.61
Error: (289.7, 290.0, 'all') starts before previous end time 289.71
Error: (291.9, 292.5, 'actually') starts before previous end time 291.90999999999997
Error: (297.7, 298.0, 'it') starts before previous end time 297.71
Error: (304.6, 304.8, 'see') starts before previous end time 304.61
Error: (307.0, 307.01, 'see') starts before previous end time 307.01
Error: (307.0, 307.5, 'all') starts before previous end time 307.02
Error: (309.4, 309.7, 'roof') starts before previous end time 309.40999999999997
Error: (314.7, 314.8, 'of') starts before previous end time 314.71
Error: (323.0, 323.3, 'it') starts before previous end time 323.01
Error: (323.8, 324.1, 'too') starts before previous end time 323.81
Error: (324.1, 324.4, 'into') starts before previous end time 324.11
Error: (362.4, 362.9, 'Let') starts before previous end time 362.6
Error: (362.9, 363.0, 'remove') starts before previous end time 362.90999999999997
Error: (365.4, 365.7, 'the') starts before previous end time 365.40999999999997
Error: (375.4, 375.5, 'to') starts before previous end time 375.40999999999997
Error: (391.1, 391.5, 'sometimes') starts before previous end time 391.11
Error: (393.2, 393.4, 'and') starts before previous end time 393.21
Error: (393.4, 394.0, 'I') starts before previous end time 393.40999999999997
Error: (396.5, 396.9, 'not') starts before previous end time 396.51
Error: (399.0, 399.4, "it's") starts before previous end time 399.01
Error: (399.6, 399.7, 'bit') starts before previous end time 399.61
Error: (403.2, 403.5, 'order') starts before previous end time 403.21
Error: (426.2, 426.5, 'wall.') starts before previous end time 426.21
/Users/joregan/Playing/hsi_google/hsi_6_0718_209_003_main.json
Error: (13.2, 13.7, 'hold') starts before previous end time 13.209999999999999
Error: (14.4, 14.41, 'just,') starts before previous end time 14.41
Error: (14.4, 14.9, 'uh,') starts before previous end time 14.42
Error: (22.9, 23.2, 'knock') starts before previous end time 22.91
Error: (23.2, 23.3, 'out?') starts before previous end time 23.21
Error: (32.9, 33.0, 'no,') starts before previous end time 32.91
Error: (33.0, 33.5, "It's") starts before previous end time 33.01
Error: (37.3, 37.9, 'if') starts before previous end time 37.309999999999995
Error: (42.2, 42.3, 'about.') starts before previous end time 42.21
Error: (49.7, 49.8, 'how') starts before previous end time 49.71
Error: (49.9, 50.2, 'Okay.') starts before previous end time 49.91
Error: (53.2, 53.9, 'Uh,') starts before previous end time 53.21
Error: (57.4, 58.3, 'they') starts before previous end time 57.41
Error: (59.2, 60.0, 'because') starts before previous end time 59.21
Error: (61.3, 61.6, 'right?') starts before previous end time 61.309999999999995
Error: (62.8, 63.3, 'to') starts before previous end time 62.809999999999995
Error: (70.1, 70.2, 'out.') starts before previous end time 70.11
Error: (75.2, 75.4, 'what?') starts before previous end time 75.21000000000001
Error: (81.5, 81.6, 'room') starts before previous end time 81.51
Error: (93.0, 93.2, 'wall,') starts before previous end time 93.01
Error: (97.7, 97.8, 'later.') starts before previous end time 97.71000000000001
Error: (99.0, 99.1, 'into') starts before previous end time 99.01
Error: (99.3, 99.6, 'right?') starts before previous end time 99.31
Error: (112.9, 113.9, "it's") starts before previous end time 112.91000000000001
Error: (113.9, 114.3, 'like') starts before previous end time 113.91000000000001
Error: (116.5, 116.8, 'see') starts before previous end time 116.51
Error: (124.0, 124.2, 'because') starts before previous end time 124.01
Error: (124.6, 124.9, 'you.') starts before previous end time 124.61
Error: (131.8, 132.4, 'The') starts before previous end time 131.81
Error: (133.0, 133.2, 'that') starts before previous end time 133.01
Error: (133.8, 133.9, 'go') starts before previous end time 133.81
Error: (135.1, 135.2, 'corner,') starts before previous end time 135.10999999999999
Error: (135.7, 136.3, 'they') starts before previous end time 135.70999999999998
Error: (136.6, 137.5, 'um,') starts before previous end time 136.60999999999999
Error: (152.2, 152.3, 'chair') starts before previous end time 152.20999999999998
Error: (155.0, 155.5, 'walk') starts before previous end time 155.01
Error: (156.7, 156.8, 'be') starts before previous end time 156.70999999999998
Error: (162.9, 163.1, 'existence.') starts before previous end time 162.91
Error: (172.1, 172.10999999999999, 'do') starts before previous end time 172.10999999999999
Error: (172.1, 172.4, 'that.') starts before previous end time 172.11999999999998
Error: (173.0, 173.1, 'do') starts before previous end time 173.01
Error: (179.4, 179.7, "it's") starts before previous end time 179.41
Error: (182.3, 182.5, 'you') starts before previous end time 182.31
Error: (188.0, 188.3, 'life,') starts before previous end time 188.01
Error: (196.2, 196.4, 'keep') starts before previous end time 196.20999999999998
Error: (197.2, 197.20999999999998, 'be') starts before previous end time 197.20999999999998
Error: (197.2, 197.5, 'in') starts before previous end time 197.21999999999997
Error: (199.1, 199.9, 'Yeah.') starts before previous end time 199.10999999999999
Error: (210.8, 211.2, 'used') starts before previous end time 210.81
Error: (226.3, 226.7, 'you') starts before previous end time 226.31
Error: (226.7, 227.2, 'you') starts before previous end time 226.70999999999998
Error: (227.6, 227.60999999999999, 'bit') starts before previous end time 227.60999999999999
Error: (227.6, 227.7, 'of') starts before previous end time 227.61999999999998
Error: (230.7, 231.2, 'to') starts before previous end time 230.70999999999998
Error: (235.9, 236.0, 'be') starts before previous end time 235.91
Error: (236.1, 236.3, 'ground.') starts before previous end time 236.10999999999999
Error: (239.1, 239.5, 'rules') starts before previous end time 239.10999999999999
Error: (246.7, 247.2, 'stolen') starts before previous end time 246.70999999999998
Error: (259.0, 259.3, 'police') starts before previous end time 259.01
Error: (259.6, 260.2, 'on') starts before previous end time 259.61
Error: (263.2, 263.3, 'be') starts before previous end time 263.21
Error: (270.7, 271.1, 'you') starts before previous end time 270.71
Error: (271.8, 272.4, 'that') starts before previous end time 271.81
Error: (275.1, 276.2, 'like') starts before previous end time 275.11
Error: (280.8, 281.2, 'says') starts before previous end time 280.81
Error: (285.6, 285.9, 'hands.') starts before previous end time 285.61
Error: (293.4, 293.5, 'no,') starts before previous end time 293.40999999999997
Error: (293.6, 293.9, 'Because') starts before previous end time 293.61
Error: (297.4, 297.6, 'expecting') starts before previous end time 297.40999999999997
Error: (299.8, 300.2, 'why') starts before previous end time 299.81
Error: (306.3, 306.5, '2') starts before previous end time 306.31
Error: (307.0, 307.01, 'have') starts before previous end time 307.01
Error: (307.0, 307.2, '10') starts before previous end time 307.02
Error: (307.9, 308.4, 'oh') starts before previous end time 307.90999999999997
Error: (314.5, 314.6, 'it,') starts before previous end time 314.51
Error: (318.8, 319.6, 'I') starts before previous end time 318.81
Error: (320.0, 320.2, 'I') starts before previous end time 320.01
Error: (335.1, 335.4, 'no,') starts before previous end time 335.11
Error: (335.7, 335.9, 'No.') starts before previous end time 335.71
Error: (340.2, 340.7, 'I,') starts before previous end time 340.21
Error: (341.3, 341.5, 'like') starts before previous end time 341.31
Error: (342.8, 342.81, 'got') starts before previous end time 342.81
Error: (342.8, 342.9, 'to') starts before previous end time 342.82
Error: (345.3, 345.4, 'the') starts before previous end time 345.31
Error: (346.7, 347.0, 'to') starts before previous end time 346.71
Error: (347.0, 347.1, 'to') starts before previous end time 347.01
Error: (358.0, 358.1, 'rug') starts before previous end time 358.01
Error: (384.5, 384.8, "there's") starts before previous end time 384.51
Error: (386.7, 387.1, 'everyone') starts before previous end time 386.71
Error: (399.1, 399.11, 'middle.') starts before previous end time 399.11
Error: (399.1, 399.5, 'It') starts before previous end time 399.12
Error: (401.2, 401.4, 'a') starts before previous end time 401.21
Error: (412.2, 412.3, 'like') starts before previous end time 412.21
Error: (417.0, 417.2, "that's") starts before previous end time 417.01
Error: (421.3, 421.4, 'that') starts before previous end time 421.31
Error: (432.8, 433.6, 'Knowledge') starts before previous end time 432.81
Error: (433.8, 434.2, 'tree,') starts before previous end time 433.81
Error: (449.6, 449.8, 'no,') starts before previous end time 449.61
Error: (451.4, 451.7, 'It') starts before previous end time 451.40999999999997
Error: (455.5, 455.9, 'everything,') starts before previous end time 455.51
/Users/joregan/Playing/hsi_google/hsi_5_0718_210_002_main.json
Error: (50.8, 50.9, 'to') starts before previous end time 50.809999999999995
Error: (90.6, 90.7, 'know,') starts before previous end time 90.61
Error: (132.2, 132.5, 'so') starts before previous end time 132.20999999999998
Error: (134.0, 134.3, 'too') starts before previous end time 134.01
Error: (134.3, 134.7, 'to') starts before previous end time 134.31
Error: (146.9, 147.2, 'that') starts before previous end time 146.91
Error: (151.8, 153.0, 'But') starts before previous end time 151.81
Error: (156.3, 156.8, 'some') starts before previous end time 156.31
Error: (163.3, 163.31, 'think?') starts before previous end time 163.31
Error: (163.3, 164.0, 'Would') starts before previous end time 163.32
Error: (164.9, 165.0, 'put') starts before previous end time 164.91
Error: (202.2, 202.3, 'there.') starts before previous end time 202.20999999999998
Error: (207.5, 207.9, 'want') starts before previous end time 207.51
Error: (207.9, 208.3, 'sit') starts before previous end time 207.91
Error: (210.8, 211.2, 'couch') starts before previous end time 210.81
Error: (211.9, 212.1, 'have') starts before previous end time 211.91
Error: (213.9, 214.1, 'that.') starts before previous end time 213.91
Error: (216.7, 217.3, 'suggestion') starts before previous end time 216.70999999999998
Error: (229.2, 229.4, 'out') starts before previous end time 229.20999999999998
Error: (236.4, 236.6, 'them.') starts before previous end time 236.41
Error: (256.3, 256.6, 'they') starts before previous end time 256.31
Error: (258.1, 258.4, 'a') starts before previous end time 258.11
Error: (262.0, 262.01, 'of') starts before previous end time 262.01
Error: (262.0, 262.4, 'holes') starts before previous end time 262.02
Error: (262.6, 263.0, 'walls,') starts before previous end time 262.61
Error: (266.6, 266.7, 'call?') starts before previous end time 266.61
Error: (277.0, 277.2, 'know,') starts before previous end time 277.01
Error: (283.7, 283.8, 'know') starts before previous end time 283.71
Error: (288.5, 288.8, 'what') starts before previous end time 288.51
Error: (300.6, 301.0, 'but') starts before previous end time 300.61
Error: (301.3, 301.6, 'want') starts before previous end time 301.31
Error: (306.2, 306.21, 'have') starts before previous end time 306.21
Error: (306.2, 306.3, 'a') starts before previous end time 306.21999999999997
Error: (311.9, 312.3, 'realize') starts before previous end time 311.90999999999997
Error: (316.3, 316.8, "there's") starts before previous end time 316.31
Error: (344.9, 345.2, 'I') starts before previous end time 344.90999999999997
Error: (368.4, 368.40999999999997, 'have') starts before previous end time 368.40999999999997
Error: (368.4, 368.5, 'to') starts before previous end time 368.41999999999996
Error: (377.5, 377.8, 'thought') starts before previous end time 377.51
Error: (382.0, 382.1, 'think?') starts before previous end time 382.01
Error: (405.7, 406.0, 'a') starts before previous end time 405.71
Error: (413.1, 413.4, 'a?') starts before previous end time 413.11
Error: (415.9, 416.3, 'Mac') starts before previous end time 415.90999999999997
Error: (436.1, 436.4, 'and') starts before previous end time 436.11
Error: (447.7, 448.0, 'the') starts before previous end time 447.71
Error: (449.7, 449.8, 'the') starts before previous end time 449.71
Error: (451.9, 453.2, 'yeah.') starts before previous end time 451.90999999999997
Error: (465.2, 466.3, 'I') starts before previous end time 465.21
/Users/joregan/Playing/hsi_google/hsi_4_0717_209_003_inter.json
Error: (3.3, 3.5, "that's") starts before previous end time 3.3099999999999996
Error: (5.2, 5.6, 'have') starts before previous end time 5.21
Error: (14.3, 14.6, "that's,") starts before previous end time 14.31
Error: (159.6, 159.7, 'do') starts before previous end time 159.60999999999999
Error: (187.7, 187.8, 'think') starts before previous end time 187.70999999999998
Error: (203.4, 203.6, 'maybe') starts before previous end time 203.41
Error: (215.5, 215.8, 'together') starts before previous end time 215.51
Error: (220.0, 220.5, 'under') starts before previous end time 220.01
Error: (296.0, 296.5, 'do') starts before previous end time 296.01
Error: (296.6, 296.8, 'the') starts before previous end time 296.61
Error: (325.1, 325.3, 'we') starts before previous end time 325.11
Error: (326.9, 327.0, 'move') starts before previous end time 326.90999999999997
Error: (327.0, 327.5, 'bin?') starts before previous end time 327.01
Error: (327.9, 327.90999999999997, 'see') starts before previous end time 327.90999999999997
Error: (327.9, 328.1, 'the') starts before previous end time 327.91999999999996
/Users/joregan/Playing/hsi_google/hsi_5_0718_210_003_inter.json
Error: (4.3, 4.8, 'my') starts before previous end time 4.31
Error: (5.7, 5.8, "it's") starts before previous end time 5.71
Error: (5.9, 6.4, 'ugly') starts before previous end time 5.91
Error: (43.0, 43.1, 'know') starts before previous end time 43.01
Error: (53.0, 53.1, "it's") starts before previous end time 53.01
Error: (53.9, 54.2, 'with') starts before previous end time 53.91
Error: (54.2, 54.5, 'armchair,') starts before previous end time 54.21
Error: (72.5, 72.7, 'I') starts before previous end time 72.51
Error: (108.8, 108.9, 'I') starts before previous end time 108.81
Error: (110.0, 110.2, 'if') starts before previous end time 110.01
Error: (111.8, 112.0, 'remove') starts before previous end time 111.81
Error: (117.9, 118.2, 'I') starts before previous end time 117.91000000000001
Error: (118.5, 118.9, 'keep') starts before previous end time 118.51
Error: (119.8, 120.0, 'a') starts before previous end time 119.81
Error: (182.4, 182.6, 'why.') starts before previous end time 182.41
Error: (183.5, 183.6, 'remove') starts before previous end time 183.51
Error: (196.6, 196.7, 'want') starts before previous end time 196.60999999999999
Error: (196.7, 196.9, 'actually') starts before previous end time 196.70999999999998
Error: (199.1, 200.0, 'any') starts before previous end time 199.10999999999999
Error: (208.4, 209.0, 'living') starts before previous end time 208.41
Error: (216.1, 216.2, 'good.') starts before previous end time 216.10999999999999
Error: (278.5, 278.7, 'I') starts before previous end time 278.51
Error: (314.2, 314.4, 'place') starts before previous end time 314.21
Error: (339.2, 339.4, 'it.') starts before previous end time 339.21
Error: (359.5, 359.51, 'should') starts before previous end time 359.51
Error: (359.5, 359.8, 'place') starts before previous end time 359.52
Error: (415.1, 415.3, 'point') starts before previous end time 415.11
Error: (423.8, 423.81, 'them') starts before previous end time 423.81
Error: (423.8, 424.3, 'which') starts before previous end time 423.82
Error: (424.7, 424.9, 'keep') starts before previous end time 424.71
Error: (465.2, 465.4, 'put') starts before previous end time 465.21
Error: (476.1, 476.3, 'somewhere') starts before previous end time 476.11
Error: (517.5, 517.9, 'want') starts before previous end time 517.51
Error: (596.7, 597.2, 'for') starts before previous end time 596.71
/Users/joregan/Playing/hsi_google/hsi_6_0718_211_001_inter.json
Error: (29.2, 29.5, 'mind') starts before previous end time 29.21
Error: (31.6, 32.1, "I'm") starts before previous end time 31.610000000000003
Error: (32.1, 32.4, 'moving') starts before previous end time 32.11
Error: (42.8, 42.9, 'like') starts before previous end time 42.809999999999995
Error: (56.4, 56.5, '1.') starts before previous end time 56.41
Error: (80.8, 80.9, 'it.') starts before previous end time 80.81
Error: (108.9, 109.0, 'it?') starts before previous end time 108.91000000000001
Error: (129.9, 130.2, 'France,') starts before previous end time 129.91
Error: (135.3, 135.5, 'president') starts before previous end time 135.31
Error: (139.8, 139.9, 'they') starts before previous end time 139.81
Error: (141.5, 141.6, 'the') starts before previous end time 141.51
Error: (146.0, 146.2, 'of') starts before previous end time 146.01
Error: (146.4, 146.8, "that's") starts before previous end time 146.41
Error: (147.2, 147.4, 'this') starts before previous end time 147.20999999999998
Error: (149.1, 150.3, 'vases,') starts before previous end time 149.10999999999999
Error: (157.0, 157.6, "That's") starts before previous end time 157.01
Error: (167.5, 167.51, 'to') starts before previous end time 167.51
Error: (167.5, 167.7, 'change') starts before previous end time 167.51999999999998
Error: (216.6, 216.8, 'of') starts before previous end time 216.60999999999999
Error: (237.0, 237.2, 'of') starts before previous end time 237.01
Error: (238.2, 238.4, 'person') starts before previous end time 238.20999999999998
Error: (259.6, 259.8, 'agree,') starts before previous end time 259.61
Error: (260.2, 260.4, 'agree') starts before previous end time 260.21
Error: (269.6, 269.61, 'that') starts before previous end time 269.61
Error: (269.6, 269.9, 'it') starts before previous end time 269.62
Error: (269.9, 270.1, 'be') starts before previous end time 269.90999999999997
Error: (270.5, 271.0, 'Lube') starts before previous end time 270.51
Error: (271.4, 271.5, 'later') starts before previous end time 271.40999999999997
Error: (272.9, 273.1, 'this') starts before previous end time 272.90999999999997
Error: (275.9, 276.5, 'outdated') starts before previous end time 275.90999999999997
Error: (281.0, 281.8, 'it.') starts before previous end time 281.01
Error: (288.6, 288.9, "It's") starts before previous end time 288.61
Error: (292.5, 292.7, 'like') starts before previous end time 292.51
Error: (295.0, 295.3, 'right?') starts before previous end time 295.01
Error: (297.5, 298.2, 'that,') starts before previous end time 297.51
Error: (298.1, 298.5, 'Have') starts before previous end time 298.2
Error: (312.0, 312.1, 'middle') starts before previous end time 312.01
Error: (319.6, 320.3, 'I') starts before previous end time 319.61
Error: (334.0, 334.3, "they're") starts before previous end time 334.01
Error: (334.5, 334.51, 'take') starts before previous end time 334.51
Error: (334.5, 334.9, 'the') starts before previous end time 334.52
Error: (345.6, 345.7, 'of') starts before previous end time 345.61
Error: (363.0, 363.1, 'river.') starts before previous end time 363.01
Error: (375.6, 376.6, 'it') starts before previous end time 375.61
Error: (379.5, 379.8, 'dark') starts before previous end time 379.51
Error: (391.8, 392.3, 'ya.') starts before previous end time 391.81
/Users/joregan/Playing/hsi_google/hsi_1_0515_210_001_main.json
Error: (16.7, 17.3, 'are') starts before previous end time 16.71
Error: (17.3, 17.6, 'ready?') starts before previous end time 17.310000000000002
Error: (27.8, 27.9, 'for') starts before previous end time 27.810000000000002
Error: (34.3, 34.4, 'see,') starts before previous end time 34.309999999999995
Error: (36.9, 37.1, 'be') starts before previous end time 36.91
Error: (51.0, 51.1, 'be') starts before previous end time 51.01
Error: (51.5, 51.8, 'here.') starts before previous end time 51.51
Error: (60.4, 60.7, 'to') starts before previous end time 60.41
Error: (63.4, 63.8, 'it') starts before previous end time 63.41
Error: (67.2, 67.5, 'break') starts before previous end time 67.21000000000001
Error: (74.3, 74.4, 'of') starts before previous end time 74.31
Error: (74.4, 74.8, 'You') starts before previous end time 74.41000000000001
Error: (77.7, 77.8, 'bit.') starts before previous end time 77.71000000000001
Error: (81.6, 81.8, 'great') starts before previous end time 81.61
Error: (89.0, 89.4, 'the') starts before previous end time 89.01
Error: (90.2, 91.0, 'Yeah.') starts before previous end time 90.21000000000001
Error: (96.7, 97.2, 'if') starts before previous end time 96.71000000000001
Error: (139.9, 140.2, 'So') starts before previous end time 139.91
Error: (141.4, 141.7, 'there') starts before previous end time 141.41
Error: (141.7, 141.9, 'no') starts before previous end time 141.70999999999998
Error: (154.6, 154.8, 'floor.') starts before previous end time 154.60999999999999
Error: (169.8, 170.1, 'Yeah,') starts before previous end time 169.81
Error: (172.2, 172.4, 'So,') starts before previous end time 172.20999999999998
Error: (177.4, 177.5, 'the') starts before previous end time 177.41
Error: (190.9, 191.0, 'be') starts before previous end time 190.91
Error: (196.0, 196.3, 'So,') starts before previous end time 196.01
Error: (197.0, 197.4, 'if') starts before previous end time 197.01
Error: (204.2, 204.4, 'here') starts before previous end time 204.20999999999998
Error: (206.8, 207.4, 'you') starts before previous end time 206.81
Error: (207.6, 207.8, 'all') starts before previous end time 207.60999999999999
Error: (219.5, 219.51, 'be') starts before previous end time 219.51
Error: (219.5, 220.0, 'all') starts before previous end time 219.51999999999998
Error: (223.6, 224.1, 'sit') starts before previous end time 223.60999999999999
Error: (228.8, 229.1, 'he') starts before previous end time 228.81
Error: (245.4, 245.7, 'if') starts before previous end time 245.41
Error: (246.3, 246.5, 'small,') starts before previous end time 246.31
Error: (248.1, 248.2, 'discuss') starts before previous end time 248.10999999999999
Error: (250.8, 250.9, 'the') starts before previous end time 250.81
Error: (252.5, 252.6, 'a') starts before previous end time 252.51
Error: (255.0, 255.6, 'keep') starts before previous end time 255.01
/Users/joregan/Playing/hsi_google/hsi_3_0614_227_001_main.json
Error: (11.6, 12.0, 'on') starts before previous end time 11.61
Error: (31.5, 31.8, 'to') starts before previous end time 31.51
Error: (31.8, 32.1, 'a') starts before previous end time 31.810000000000002
Error: (42.0, 42.2, 'stuff,') starts before previous end time 42.01
Error: (42.6, 43.9, 'I') starts before previous end time 42.61
Error: (60.9, 61.5, 'market') starts before previous end time 60.91
Error: (74.4, 75.2, "they're") starts before previous end time 74.41000000000001
Error: (78.6, 79.3, 'places.') starts before previous end time 78.61
Error: (97.4, 97.8, 'traveling') starts before previous end time 97.41000000000001
Error: (102.9, 103.1, 'was') starts before previous end time 102.91000000000001
Error: (104.3, 104.6, 'a') starts before previous end time 104.31
Error: (104.6, 107.4, 'so') starts before previous end time 104.61
Error: (117.6, 117.9, 'this') starts before previous end time 117.61
Error: (123.2, 123.6, 'I') starts before previous end time 123.21000000000001
Error: (126.1, 126.7, 'secondhand') starts before previous end time 126.11
Error: (130.7, 131.1, 'boutique.') starts before previous end time 130.70999999999998
Error: (131.9, 132.3, 'beginning.') starts before previous end time 131.91
Error: (141.4, 141.8, 'really') starts before previous end time 141.41
Error: (143.6, 144.0, "It's") starts before previous end time 143.60999999999999
Error: (162.6, 162.7, 'bit') starts before previous end time 162.60999999999999
Error: (195.5, 196.2, 'some') starts before previous end time 195.51
Error: (200.5, 201.0, 'make') starts before previous end time 200.51
Error: (210.0, 210.2, "it's") starts before previous end time 210.01
Error: (216.5, 216.7, 'bit,') starts before previous end time 216.51
Error: (218.2, 218.5, 'I') starts before previous end time 218.20999999999998
Error: (227.8, 227.9, 'to') starts before previous end time 227.81
Error: (254.2, 254.3, 'can') starts before previous end time 254.20999999999998
Error: (255.8, 255.81, 'like') starts before previous end time 255.81
/Users/joregan/Playing/hsi_google/hsi_4_0717_210_001_main.json
Error: (45.0, 45.2, 'from') starts before previous end time 45.01
Error: (51.9, 52.1, 'like') starts before previous end time 51.91
Error: (66.1, 67.5, 'and') starts before previous end time 66.11
Error: (77.0, 77.1, 'also') starts before previous end time 77.01
Error: (77.8, 78.0, 'have') starts before previous end time 77.81
Error: (82.4, 82.6, 'fun') starts before previous end time 82.41000000000001
Error: (95.0, 95.2, 'direction') starts before previous end time 95.01
Error: (106.0, 106.1, 'a') starts before previous end time 106.01
Error: (113.5, 113.7, 'like') starts before previous end time 113.51
Error: (121.1, 121.3, 'think') starts before previous end time 121.11
Error: (139.2, 139.3, 'them') starts before previous end time 139.20999999999998
Error: (140.2, 140.4, "it's") starts before previous end time 140.20999999999998
Error: (149.5, 149.8, 'how') starts before previous end time 149.51
Error: (150.2, 151.1, 'but') starts before previous end time 150.20999999999998
Error: (163.5, 163.7, 'like') starts before previous end time 163.51
Error: (169.0, 169.3, 'take') starts before previous end time 169.01
Error: (177.6, 177.60999999999999, 'of') starts before previous end time 177.60999999999999
Error: (177.6, 177.8, 'you.') starts before previous end time 177.61999999999998
Error: (179.3, 180.3, 'Yeah.') starts before previous end time 179.31
Error: (182.3, 182.7, 'pose.') starts before previous end time 182.31
Error: (199.1, 199.3, 'life.') starts before previous end time 199.10999999999999
Error: (207.6, 208.1, 'sad.') starts before previous end time 207.60999999999999
Error: (237.8, 238.5, 'plants') starts before previous end time 237.81
Error: (239.1, 239.3, 'roof') starts before previous end time 239.10999999999999
Error: (253.9, 254.1, "it's") starts before previous end time 253.91
Error: (255.0, 255.1, 'way') starts before previous end time 255.01
Error: (262.9, 263.3, 'empty') starts before previous end time 262.90999999999997
Error: (263.6, 264.7, "It's") starts before previous end time 263.61
Error: (281.2, 281.4, 'my') starts before previous end time 281.21
Error: (284.7, 284.9, 'think?') starts before previous end time 284.71
Error: (288.4, 289.0, 'out') starts before previous end time 288.40999999999997
Error: (290.7, 290.8, 'the') starts before previous end time 290.71
Error: (294.4, 294.7, 'have') starts before previous end time 294.40999999999997
Error: (303.9, 304.2, 'true') starts before previous end time 303.90999999999997
Error: (306.8, 307.0, 'pillows.') starts before previous end time 306.81
Error: (309.7, 309.71, 'know') starts before previous end time 309.71
Error: (309.7, 310.0, 'about') starts before previous end time 309.71999999999997
Error: (326.8, 326.81, 'much.') starts before previous end time 326.81
Error: (326.8, 327.6, 'I') starts before previous end time 326.82
Error: (343.7, 344.4, 'floors.') starts before previous end time 343.71
Error: (344.9, 345.4, "that's") starts before previous end time 344.90999999999997
Error: (353.5, 353.7, 'kitchen') starts before previous end time 353.51
Error: (354.0, 354.4, 'but') starts before previous end time 354.01
Error: (356.9, 357.2, 'looking') starts before previous end time 356.90999999999997
Error: (373.1, 373.3, '1.') starts before previous end time 373.11
Error: (384.1, 384.4, 'really') starts before previous end time 384.11
Error: (391.2, 391.3, "it's") starts before previous end time 391.21
Error: (394.6, 394.7, 'not') starts before previous end time 394.61
Error: (416.8, 416.9, 'the') starts before previous end time 416.81
/Users/joregan/Playing/hsi_google/hsi_6_0718_210_002_main.json
Error: (37.0, 37.1, 'They') starts before previous end time 37.01
Error: (38.9, 39.1, 'that?') starts before previous end time 38.91
Error: (41.9, 42.4, 'Why') starts before previous end time 41.91
Error: (42.5, 42.7, 'white?') starts before previous end time 42.51
Error: (53.6, 53.9, 'you') starts before previous end time 53.61
Error: (59.6, 59.7, 'of.') starts before previous end time 59.61
Error: (65.8, 66.1, 'a') starts before previous end time 65.81
Error: (68.2, 68.3, 'that') starts before previous end time 68.21000000000001
Error: (89.0, 89.1, 'pattern') starts before previous end time 89.01
Error: (97.4, 98.2, 'so') starts before previous end time 97.41000000000001
Error: (109.3, 109.5, 'the') starts before previous end time 109.31
Error: (110.1, 111.0, 'Mrs.') starts before previous end time 110.11
Error: (111.4, 111.6, 'kitchen.') starts before previous end time 111.41000000000001
Error: (126.9, 127.0, '1.') starts before previous end time 126.91000000000001
Error: (140.9, 141.4, 'I') starts before previous end time 140.91
Error: (143.5, 144.0, 'our') starts before previous end time 143.51
Error: (159.7, 159.9, 'And') starts before previous end time 159.70999999999998
Error: (169.0, 169.8, 'even') starts before previous end time 169.01
Error: (173.2, 173.5, 'for') starts before previous end time 173.20999999999998
Error: (173.5, 174.5, 'Wow.') starts before previous end time 173.51
Error: (178.7, 179.1, 'Okay,') starts before previous end time 178.70999999999998
Error: (188.3, 188.6, 'make') starts before previous end time 188.31
Error: (190.0, 190.6, 'the') starts before previous end time 190.01
Error: (194.1, 194.10999999999999, 'the') starts before previous end time 194.10999999999999
Error: (194.1, 194.4, 'chair') starts before previous end time 194.11999999999998
Error: (209.5, 209.7, 'like') starts before previous end time 209.51
Error: (218.2, 218.4, 'else') starts before previous end time 218.20999999999998
Error: (245.6, 246.6, 'Okay') starts before previous end time 245.60999999999999
Error: (247.7, 248.2, "we're") starts before previous end time 247.70999999999998
Error: (248.2, 248.3, 'to') starts before previous end time 248.20999999999998
Error: (248.4, 248.5, 'get') starts before previous end time 248.41
Error: (251.1, 251.6, 'because') starts before previous end time 251.10999999999999
Error: (252.2, 252.5, 'have') starts before previous end time 252.20999999999998
Error: (253.4, 253.7, 'You') starts before previous end time 253.41
Error: (265.6, 265.8, 'see.') starts before previous end time 265.61
Error: (268.4, 268.5, 'what?') starts before previous end time 268.40999999999997
Error: (269.1, 269.3, 'bit') starts before previous end time 269.11
Error: (272.2, 272.4, 'Right') starts before previous end time 272.21
Error: (273.6, 273.7, 'look') starts before previous end time 273.61
Error: (273.7, 273.8, 'this,') starts before previous end time 273.71
Error: (274.9, 275.2, "it's") starts before previous end time 274.90999999999997
Error: (284.8, 284.81, 'bit') starts before previous end time 284.81
Error: (284.8, 285.3, 'too') starts before previous end time 284.82
Error: (292.1, 292.3, 'that.') starts before previous end time 292.11
Error: (299.3, 299.6, "that's") starts before previous end time 299.31
Error: (305.3, 305.5, 'here') starts before previous end time 305.31
Error: (308.4, 308.7, 'a') starts before previous end time 308.40999999999997
Error: (315.7, 315.9, 'much') starts before previous end time 315.71
Error: (322.2, 322.3, 'dog') starts before previous end time 322.21
Error: (327.9, 328.2, 'baby') starts before previous end time 327.90999999999997
Error: (331.1, 331.11, 'be') starts before previous end time 331.11
Error: (331.1, 332.2, 'like') starts before previous end time 331.12
Error: (335.7, 336.2, 'what') starts before previous end time 335.71
Error: (344.2, 344.3, 'to') starts before previous end time 344.21
Error: (344.3, 344.5, 'any') starts before previous end time 344.31
Error: (352.9, 353.0, 'I') starts before previous end time 352.90999999999997
Error: (353.8, 353.9, 'makes') starts before previous end time 353.81
Error: (372.8, 372.9, 'that') starts before previous end time 372.81
Error: (378.1, 378.5, 'is') starts before previous end time 378.11
Error: (383.3, 383.6, 'to') starts before previous end time 383.31
Error: (392.6, 392.7, 'be') starts before previous end time 392.61
Error: (399.4, 399.8, 'I') starts before previous end time 399.40999999999997
Error: (414.1, 414.5, 'I') starts before previous end time 414.11
Error: (414.9, 415.2, 'live') starts before previous end time 414.90999999999997
Error: (415.2, 415.5, 'so') starts before previous end time 415.21
/Users/joregan/Playing/hsi_google/hsi_4_0716_211_002_main.json
Error: (26.4, 26.6, 'though.') starts before previous end time 26.41
Error: (27.2, 27.5, 'the') starts before previous end time 27.21
Error: (41.6, 41.7, 'know') starts before previous end time 41.61
Error: (42.1, 42.3, 'with') starts before previous end time 42.11
Error: (82.7, 82.8, "can't") starts before previous end time 82.71000000000001
Error: (90.9, 91.2, 'why') starts before previous end time 90.91000000000001
Error: (120.7, 120.8, 'be') starts before previous end time 120.71000000000001
Error: (128.5, 128.6, 'good') starts before previous end time 128.51
Error: (143.2, 143.6, 'Okay.') starts before previous end time 143.20999999999998
Error: (161.2, 161.4, 'want') starts before previous end time 161.20999999999998
Error: (162.3, 162.9, 'Yeah.') starts before previous end time 162.31
Error: (173.3, 173.4, 'be') starts before previous end time 173.31
Error: (185.1, 185.2, 'back') starts before previous end time 185.10999999999999
Error: (187.1, 187.2, 'Yeah,') starts before previous end time 187.10999999999999
Error: (189.6, 189.9, 'When') starts before previous end time 189.60999999999999
Error: (198.6, 198.9, 'leave') starts before previous end time 198.60999999999999
Error: (209.7, 209.9, 'look') starts before previous end time 209.70999999999998
Error: (212.4, 212.7, 'pocket') starts before previous end time 212.41
Error: (217.2, 217.4, 'by') starts before previous end time 217.20999999999998
Error: (219.9, 220.1, 'table.') starts before previous end time 219.91
Error: (233.2, 233.5, 'apartment.') starts before previous end time 233.20999999999998
Error: (234.7, 234.9, 'take.') starts before previous end time 234.70999999999998
Error: (237.2, 237.6, 'I') starts before previous end time 237.20999999999998
Error: (237.6, 237.9, 'cuz') starts before previous end time 237.60999999999999
Error: (243.1, 243.3, 'thing.') starts before previous end time 243.10999999999999
Error: (265.7, 265.8, 'want') starts before previous end time 265.71
Error: (266.8, 267.0, 'panda.') starts before previous end time 266.81
Error: (271.2, 271.4, 'buy') starts before previous end time 271.21
Error: (273.1, 273.6, 'visiting') starts before previous end time 273.11
Error: (289.9, 290.4, 'scary') starts before previous end time 289.90999999999997
Error: (292.9, 293.4, 'So') starts before previous end time 292.90999999999997
Error: (294.1, 294.3, 'bring') starts before previous end time 294.11
Error: (294.6, 294.8, 'is') starts before previous end time 294.61
Error: (303.9, 304.4, 'painting') starts before previous end time 303.90999999999997
Error: (305.3, 305.9, 'bases.') starts before previous end time 305.31
Error: (314.3, 314.4, 'you') starts before previous end time 314.31
Error: (316.7, 316.9, 'also') starts before previous end time 316.71
Error: (335.7, 335.71, 'good') starts before previous end time 335.71
Error: (335.7, 335.8, 'day.') starts before previous end time 335.71999999999997
/Users/joregan/Playing/hsi_google/hsi_4_0717_222_002_inter.json
Error: (22.7, 22.9, 'this') starts before previous end time 22.71
Error: (22.9, 23.1, 'good,') starts before previous end time 22.91
Error: (24.7, 24.71, 'to') starts before previous end time 24.71
Error: (24.7, 25.0, 'restart') starts before previous end time 24.720000000000002
Error: (28.0, 28.2, 'do') starts before previous end time 28.01
Error: (28.2, 28.5, 'landlord.') starts before previous end time 28.21
Error: (35.8, 36.0, 'very') starts before previous end time 35.809999999999995
Error: (36.4, 36.8, 'a') starts before previous end time 36.41
Error: (36.8, 36.9, 'of') starts before previous end time 36.809999999999995
Error: (38.1, 38.5, 'it') starts before previous end time 38.11
Error: (78.5, 78.8, 'some') starts before previous end time 78.51
Error: (79.9, 80.4, 'like') starts before previous end time 79.91000000000001
Error: (82.8, 82.9, 'them') starts before previous end time 82.81
Error: (93.7, 94.0, 'I') starts before previous end time 93.71000000000001
Error: (104.2, 104.21000000000001, 'very') starts before previous end time 104.21000000000001
Error: (104.2, 104.7, 'a') starts before previous end time 104.22000000000001
Error: (104.8, 104.9, 'dust.') starts before previous end time 104.81
Error: (105.5, 105.6, 'a') starts before previous end time 105.51
Error: (111.7, 112.0, "that's") starts before previous end time 111.71000000000001
Error: (113.1, 113.2, 'a') starts before previous end time 113.11
Error: (113.2, 113.4, "That's") starts before previous end time 113.21000000000001
Error: (113.8, 114.7, 'it') starts before previous end time 113.81
Error: (143.9, 144.6, 'I') starts before previous end time 143.91
Error: (150.6, 150.8, 'of') starts before previous end time 150.60999999999999
Error: (157.0, 157.3, 'some') starts before previous end time 157.01
Error: (157.4, 158.1, 'um,') starts before previous end time 157.41
Error: (174.1, 175.3, 'Now') starts before previous end time 174.10999999999999
Error: (175.6, 175.9, 'a') starts before previous end time 175.60999999999999
Error: (194.3, 194.8, 'you.') starts before previous end time 194.31
Error: (194.8, 195.2, 'I') starts before previous end time 194.81
Error: (216.1, 216.3, 'help?') starts before previous end time 216.10999999999999
Error: (219.0, 219.3, 'help') starts before previous end time 219.01
Error: (249.2, 249.3, 'put') starts before previous end time 249.20999999999998
Error: (272.6, 272.61, 'about') starts before previous end time 272.61
Error: (272.6, 272.9, 'the') starts before previous end time 272.62
Error: (272.9, 273.1, 'book?') starts before previous end time 272.90999999999997
Error: (274.7, 275.0, 'not') starts before previous end time 274.71
Error: (276.9, 277.6, 'no') starts before previous end time 276.90999999999997
Error: (279.9, 280.0, 'to') starts before previous end time 279.90999999999997
Error: (284.0, 284.2, 'had') starts before previous end time 284.01
Error: (317.4, 317.7, 'renting') starts before previous end time 317.40999999999997
/Users/joregan/Playing/hsi_google/hsi_4_0717_222_003_main.json
Error: (13.1, 13.5, 'the') starts before previous end time 13.11
Error: (20.3, 20.7, 'you') starts before previous end time 20.310000000000002
Error: (20.7, 21.0, 'take') starts before previous end time 20.71
Error: (25.3, 25.6, 'the') starts before previous end time 25.310000000000002
Error: (40.6, 41.6, 'and') starts before previous end time 40.61
Error: (42.7, 43.0, 'corner') starts before previous end time 42.71
Error: (51.7, 51.8, 'that') starts before previous end time 51.71
Error: (60.2, 60.3, 'know') starts before previous end time 60.21
Error: (61.5, 61.9, 'maybe') starts before previous end time 61.51
Error: (62.6, 63.6, 'the,') starts before previous end time 62.61
Error: (77.4, 77.7, 'over') starts before previous end time 77.41000000000001
Error: (80.7, 80.9, 'put') starts before previous end time 80.71000000000001
Error: (85.8, 86.2, 'so') starts before previous end time 85.81
Error: (100.4, 100.5, 'same') starts before previous end time 100.41000000000001
Error: (108.1, 108.3, 'say') starts before previous end time 108.11
Error: (111.0, 111.4, 'if') starts before previous end time 111.01
Error: (121.8, 122.1, 'turn') starts before previous end time 121.81
Error: (126.3, 126.4, 'get') starts before previous end time 126.31
Error: (127.2, 127.6, 'they') starts before previous end time 127.21000000000001
Error: (128.5, 128.51, 'can') starts before previous end time 128.51
Error: (128.5, 128.6, 'put') starts before previous end time 128.51999999999998
Error: (128.8, 129.0, 'wall') starts before previous end time 128.81
Error: (130.5, 130.8, 'like') starts before previous end time 130.51
Error: (131.8, 132.2, 'and') starts before previous end time 131.81
Error: (138.2, 138.3, 'here') starts before previous end time 138.20999999999998
Error: (140.8, 140.9, 'like') starts before previous end time 140.81
Error: (145.4, 145.5, 'like') starts before previous end time 145.41
Error: (173.8, 174.1, 'think') starts before previous end time 173.81
Error: (177.1, 177.5, 'I') starts before previous end time 177.10999999999999
Error: (181.8, 182.5, 'pilgrims') starts before previous end time 181.81
Error: (183.0, 183.2, "It's") starts before previous end time 183.01
Error: (188.3, 189.0, 'but') starts before previous end time 188.31
Error: (191.0, 191.3, 'kitchen.') starts before previous end time 191.01
Error: (197.0, 197.2, 'say') starts before previous end time 197.01
Error: (199.2, 199.5, 'classic') starts before previous end time 199.20999999999998
Error: (203.4, 203.7, 'work') starts before previous end time 203.41
Error: (209.3, 210.7, 'better') starts before previous end time 209.31
Error: (215.0, 215.4, 'paintings') starts before previous end time 215.01
Error: (217.3, 217.6, 'other') starts before previous end time 217.31
Error: (224.5, 224.7, 'wall.') starts before previous end time 224.51
Error: (231.0, 231.3, 'the') starts before previous end time 231.01
Error: (246.2, 246.3, 'keep') starts before previous end time 246.20999999999998
Error: (247.1, 247.2, 'the') starts before previous end time 247.10999999999999
Error: (248.6, 248.9, 'with') starts before previous end time 248.60999999999999
Error: (250.5, 250.8, 'have') starts before previous end time 250.51
Error: (262.7, 262.8, 'to') starts before previous end time 262.71
Error: (264.3, 264.6, 'corner,') starts before previous end time 264.31
Error: (269.8, 270.1, 'couch') starts before previous end time 269.81
Error: (281.4, 281.8, 'which') starts before previous end time 281.40999999999997
Error: (292.6, 292.9, 'buy') starts before previous end time 292.61
Error: (292.9, 293.4, 'basket.') starts before previous end time 292.90999999999997
Error: (297.8, 298.0, 'with') starts before previous end time 297.81
Error: (301.0, 301.3, 'nice.') starts before previous end time 301.01
Error: (302.7, 303.1, 'what') starts before previous end time 302.71
Error: (303.2, 303.4, "It's") starts before previous end time 303.21
Error: (303.4, 303.6, 'to') starts before previous end time 303.40999999999997
Error: (310.0, 310.3, 'so') starts before previous end time 310.01
Error: (310.5, 310.7, 'have') starts before previous end time 310.51
Error: (336.4, 336.5, 'have') starts before previous end time 336.40999999999997
Error: (343.3, 343.6, 'up') starts before previous end time 343.31
Error: (354.6, 354.8, 'book') starts before previous end time 354.61
Error: (359.4, 359.6, 'and') starts before previous end time 359.40999999999997
Error: (373.2, 373.9, 'light') starts before previous end time 373.21
Error: (382.7, 383.1, '2') starts before previous end time 382.71
Error: (383.6, 385.0, 'Your') starts before previous end time 383.61
Error: (388.8, 389.1, 'desk.') starts before previous end time 388.81
Error: (399.8, 400.7, 'you') starts before previous end time 399.81
Error: (404.5, 404.6, 'can') starts before previous end time 404.51
Error: (405.9, 406.1, 'couch,') starts before previous end time 405.90999999999997
Error: (407.8, 408.0, 'get') starts before previous end time 407.81
Error: (429.7, 430.0, 'and') starts before previous end time 429.71
Error: (432.9, 433.0, 'corner,') starts before previous end time 432.90999999999997
Error: (434.1, 434.5, 'your') starts before previous end time 434.11
/Users/joregan/Playing/hsi_google/hsi_3_0715_227_001_inter.json
Error: (0.5, 0.51, 'for') starts before previous end time 0.51
Error: (0.5, 0.8, 'showing') starts before previous end time 0.52
Error: (25.6, 25.9, 'everything') starts before previous end time 25.610000000000003
Error: (52.2, 52.21, 'you') starts before previous end time 52.21
Error: (52.2, 52.4, 'get') starts before previous end time 52.22
Error: (69.4, 69.7, 'even') starts before previous end time 69.41000000000001
Error: (76.0, 76.3, 'really') starts before previous end time 76.01
Error: (106.2, 106.6, 'add') starts before previous end time 106.21000000000001
Error: (111.2, 111.5, 'things.') starts before previous end time 111.21000000000001
Error: (121.1, 121.2, 'bit.') starts before previous end time 121.11
Error: (124.8, 125.3, 'ya.') starts before previous end time 124.81
Error: (142.8, 142.9, 'make') starts before previous end time 142.81
Error: (159.7, 160.0, 'taking') starts before previous end time 159.70999999999998
Error: (161.6, 162.0, 'really') starts before previous end time 161.60999999999999
Error: (174.5, 174.9, 'functional.') starts before previous end time 174.51
Error: (175.4, 175.8, 'cuz') starts before previous end time 175.41
Error: (177.3, 177.4, 'some') starts before previous end time 177.31
Error: (182.1, 182.5, 'uh,') starts before previous end time 182.10999999999999
Error: (187.5, 187.8, 'this,') starts before previous end time 187.51
Error: (200.0, 200.1, 'any') starts before previous end time 200.01
Error: (200.3, 200.7, 'advice') starts before previous end time 200.31
Error: (201.3, 202.0, 'uh') starts before previous end time 201.31
Error: (204.7, 204.9, 'things?') starts before previous end time 204.70999999999998
Error: (234.6, 234.8, 'in') starts before previous end time 234.60999999999999
Error: (256.6, 256.8, "it's") starts before previous end time 256.61
Error: (260.5, 261.0, 'uh,') starts before previous end time 260.51
Error: (262.9, 263.2, 'I') starts before previous end time 262.90999999999997
Error: (263.2, 263.5, 'everything') starts before previous end time 263.21
Error: (275.5, 276.0, 'it') starts before previous end time 275.51
Error: (364.9, 365.1, 'their') starts before previous end time 364.90999999999997
Error: (446.7, 447.1, 'I') starts before previous end time 446.71
Error: (447.1, 447.6, 'you') starts before previous end time 447.11
Error: (449.5, 450.5, 'uh') starts before previous end time 449.51
Error: (474.3, 474.5, 'think') starts before previous end time 474.31
Error: (478.4, 478.5, 'it') starts before previous end time 478.40999999999997
Error: (478.7, 479.0, 'home') starts before previous end time 478.71
Error: (479.9, 480.0, "it's") starts before previous end time 479.90999999999997
Error: (485.0, 485.4, 'whole') starts before previous end time 485.01
Error: (486.6, 486.7, 'the') starts before previous end time 486.61
Error: (505.4, 505.6, 'Yeah.') starts before previous end time 505.40999999999997
Error: (518.0, 518.9, 'Oh') starts before previous end time 518.01
Error: (519.5, 519.8, 'buy') starts before previous end time 519.51
Error: (519.8, 520.1, 'I') starts before previous end time 519.81
Error: (520.8, 521.0, 'gift.') starts before previous end time 520.81
Error: (530.1, 530.3, 'very') starts before previous end time 530.11
/Users/joregan/Playing/hsi_google/hsi_4_0716_222_001_inter.json
Error: (14.6, 14.9, 'here') starts before previous end time 14.61
Error: (20.6, 20.8, 'I') starts before previous end time 20.610000000000003
Error: (24.9, 24.91, 'know') starts before previous end time 24.91
Error: (24.9, 25.1, 'what') starts before previous end time 24.92
Error: (26.4, 26.6, "that's") starts before previous end time 26.41
Error: (27.2, 27.4, 'the') starts before previous end time 27.21
Error: (29.9, 30.0, 'bit') starts before previous end time 29.91
Error: (32.9, 33.2, 'so') starts before previous end time 32.91
Error: (33.4, 33.6, 'it') starts before previous end time 33.41
Error: (33.6, 33.8, 'the') starts before previous end time 33.61
Error: (33.8, 34.0, 'for') starts before previous end time 33.809999999999995
Error: (36.1, 36.2, 'not') starts before previous end time 36.11
Error: (38.8, 39.1, 'this') starts before previous end time 38.809999999999995
Error: (39.1, 39.7, 'uh') starts before previous end time 39.11
Error: (48.2, 48.5, 'you') starts before previous end time 48.21
Error: (48.5, 48.7, 'a') starts before previous end time 48.51
Error: (48.8, 48.9, 'stuff') starts before previous end time 48.809999999999995
Error: (68.3, 69.7, 'and') starts before previous end time 68.31
Error: (91.3, 91.5, 'like') starts before previous end time 91.31
Error: (108.2, 108.6, 'bizarre,') starts before previous end time 108.21000000000001
Error: (118.1, 118.2, 'side') starts before previous end time 118.11
Error: (122.9, 124.1, 'even') starts before previous end time 122.91000000000001
Error: (129.9, 129.91, 'like') starts before previous end time 129.91
Error: (129.9, 130.2, 'what') starts before previous end time 129.92
Error: (132.6, 132.9, 'Or') starts before previous end time 132.60999999999999
Error: (138.2, 138.3, 'show') starts before previous end time 138.20999999999998
Error: (138.8, 138.9, 'here') starts before previous end time 138.81
Error: (140.4, 140.6, 'classic') starts before previous end time 140.41
Error: (152.0, 152.2, 'in,') starts before previous end time 152.01
Error: (153.3, 153.8, 'to') starts before previous end time 153.31
Error: (156.9, 157.0, 'break') starts before previous end time 156.91
Error: (159.6, 159.8, 'want') starts before previous end time 159.60999999999999
Error: (168.1, 168.2, 'of') starts before previous end time 168.10999999999999
Error: (196.5, 196.51, 'of') starts before previous end time 196.51
Error: (196.5, 197.2, 'artist.') starts before previous end time 196.51999999999998
Error: (200.8, 201.0, 'sense.') starts before previous end time 200.81
/Users/joregan/Playing/hsi_google/hsi_1_0515_222_001_inter.json
Error: (16.6, 16.8, 'know,') starts before previous end time 16.610000000000003
Error: (18.7, 19.0, 'for') starts before previous end time 18.71
Error: (23.7, 24.1, 'why') starts before previous end time 23.71
Error: (24.2, 24.4, 'such') starts before previous end time 24.21
Error: (28.2, 28.4, 'all') starts before previous end time 28.21
Error: (34.5, 34.7, 'look') starts before previous end time 34.51
Error: (35.2, 35.3, 'see') starts before previous end time 35.21
Error: (40.7, 40.8, 'also') starts before previous end time 40.71
Error: (50.1, 50.6, 'Yeah.') starts before previous end time 50.11
Error: (89.8, 90.4, 'place') starts before previous end time 89.81
Error: (91.0, 91.3, 'Then') starts before previous end time 91.01
Error: (94.2, 94.6, 'I') starts before previous end time 94.21000000000001
Error: (94.6, 94.8, 'I') starts before previous end time 94.61
Error: (96.1, 96.4, "it's") starts before previous end time 96.11
Error: (97.2, 97.6, 'humble,') starts before previous end time 97.21000000000001
Error: (98.0, 98.5, 'when') starts before previous end time 98.01
Error: (111.1, 111.11, 'know.') starts before previous end time 111.11
Error: (111.1, 112.0, 'I') starts before previous end time 111.12
Error: (112.0, 112.3, 'just') starts before previous end time 112.01
Error: (118.4, 118.41000000000001, 'way,') starts before previous end time 118.41000000000001
Error: (118.4, 119.0, "it's,") starts before previous end time 118.42000000000002
Error: (140.9, 141.0, 'like') starts before previous end time 140.91
Error: (143.5, 143.9, 'if') starts before previous end time 143.51
Error: (145.7, 145.9, 'see') starts before previous end time 145.70999999999998
Error: (155.3, 155.6, 'wood') starts before previous end time 155.31
Error: (156.7, 156.70999999999998, 'is') starts before previous end time 156.70999999999998
Error: (156.7, 157.1, 'in') starts before previous end time 156.71999999999997
Error: (161.3, 161.7, 'the') starts before previous end time 161.31
Error: (166.0, 166.2, 'see') starts before previous end time 166.01
Error: (166.5, 166.9, 'couch?') starts before previous end time 166.51
Error: (170.2, 170.4, 'try.') starts before previous end time 170.20999999999998
Error: (172.3, 173.1, 'with') starts before previous end time 172.31
Error: (189.7, 189.70999999999998, 'the') starts before previous end time 189.70999999999998
Error: (189.7, 190.0, 'couch') starts before previous end time 189.71999999999997
Error: (190.6, 190.9, 'floor?') starts before previous end time 190.60999999999999
Error: (204.8, 204.9, 'like') starts before previous end time 204.81
Error: (221.1, 221.5, 'in') starts before previous end time 221.10999999999999
Error: (238.2, 238.3, 'my') starts before previous end time 238.20999999999998
Error: (252.2, 252.5, '20s.') starts before previous end time 252.20999999999998
Error: (255.0, 255.3, 'I') starts before previous end time 255.01
Error: (263.2, 263.5, 'see') starts before previous end time 263.21
Error: (263.5, 263.9, 'Where') starts before previous end time 263.51
Error: (264.1, 264.3, 'It') starts before previous end time 264.11
Error: (265.1, 265.4, 'But') starts before previous end time 265.3
Error: (271.8, 272.2, 'So') starts before previous end time 271.81
Error: (280.8, 281.1, 'so') starts before previous end time 280.81
Error: (285.3, 286.4, 'snakes?') starts before previous end time 285.31
Error: (297.6, 297.9, 'you') starts before previous end time 297.61
Error: (304.1, 304.4, 'the') starts before previous end time 304.11
Error: (314.7, 315.0, 'a') starts before previous end time 314.71
Error: (315.0, 315.3, 'on') starts before previous end time 315.01
Error: (328.3, 328.31, 'you') starts before previous end time 328.31
Error: (328.3, 328.6, 'decide') starts before previous end time 328.32
Error: (331.6, 331.7, 'done') starts before previous end time 331.61
Error: (334.6, 335.0, 'you') starts before previous end time 334.61
Error: (335.0, 335.8, 'wherever') starts before previous end time 335.01
Error: (335.8, 336.8, 'look?') starts before previous end time 335.81
Error: (340.5, 340.6, 'know.') starts before previous end time 340.51
Error: (343.0, 343.5, 'putting') starts before previous end time 343.01
Error: (349.0, 349.5, 'couch,') starts before previous end time 349.01
Error: (350.0, 350.2, 'see') starts before previous end time 350.01
Error: (362.6, 362.8, 'have') starts before previous end time 362.61
Error: (367.9, 368.1, 'Yeah,') starts before previous end time 367.90999999999997
/Users/joregan/Playing/hsi_google/hsi_3_0715_210_011_inter.json
Error: (5.5, 5.7, 'for') starts before previous end time 5.51
Error: (7.1, 7.4, 'you') starts before previous end time 7.109999999999999
Error: (7.7, 8.2, 'tight') starts before previous end time 7.71
Error: (9.1, 9.4, 'it') starts before previous end time 9.11
Error: (15.5, 15.6, 'some') starts before previous end time 15.51
Error: (18.2, 18.5, 'things.') starts before previous end time 18.21
Error: (29.0, 29.5, 'I') starts before previous end time 29.01
Error: (36.4, 37.0, 'couches') starts before previous end time 36.41
Error: (43.0, 43.5, 'like') starts before previous end time 43.01
Error: (45.0, 45.2, 'bit') starts before previous end time 45.01
Error: (47.8, 48.2, 'water') starts before previous end time 47.809999999999995
Error: (49.8, 50.1, 'I') starts before previous end time 49.809999999999995
Error: (86.6, 86.9, "it's") starts before previous end time 86.61
Error: (92.8, 93.2, 'window') starts before previous end time 92.81
Error: (124.4, 124.6, 'really') starts before previous end time 124.41000000000001
Error: (129.3, 129.5, 'be') starts before previous end time 129.31
Error: (137.8, 138.2, "it's") starts before previous end time 137.81
Error: (141.0, 141.3, 'I') starts before previous end time 141.01
Error: (147.3, 147.4, 'I') starts before previous end time 147.31
Error: (154.7, 154.8, "it's") starts before previous end time 154.70999999999998
Error: (158.0, 158.3, 'wall') starts before previous end time 158.01
Error: (161.3, 161.7, '1,') starts before previous end time 161.31
Error: (165.2, 165.5, 'really') starts before previous end time 165.20999999999998
Error: (186.6, 186.60999999999999, 'bit.') starts before previous end time 186.60999999999999
Error: (197.2, 198.2, 'You') starts before previous end time 197.20999999999998
Error: (201.6, 201.8, 'a') starts before previous end time 201.60999999999999
Error: (208.8, 209.0, 'I') starts before previous end time 208.81
Error: (210.4, 210.5, '1.') starts before previous end time 210.41
Error: (211.7, 212.2, 'because') starts before previous end time 211.70999999999998
Error: (213.3, 213.5, 'make') starts before previous end time 213.31
Error: (219.7, 219.9, 'to') starts before previous end time 219.70999999999998
Error: (222.1, 222.4, 'asking') starts before previous end time 222.10999999999999
Error: (223.2, 223.4, 'but,') starts before previous end time 223.20999999999998
Error: (262.5, 262.8, 'window,') starts before previous end time 262.51
Error: (265.3, 266.0, 'uh,') starts before previous end time 265.31
Error: (274.9, 275.3, 'I') starts before previous end time 274.90999999999997
Error: (275.3, 275.7, 'I') starts before previous end time 275.31
Error: (293.4, 293.6, 'I') starts before previous end time 293.40999999999997
Error: (319.2, 319.5, 'that') starts before previous end time 319.21
Error: (320.4, 321.4, 'Sweden,') starts before previous end time 320.40999999999997
Error: (329.8, 330.1, 'that') starts before previous end time 329.81
Error: (334.1, 334.2, 'think?') starts before previous end time 334.11
Error: (334.5, 334.9, 'should') starts before previous end time 334.51
Error: (344.1, 345.2, 'They') starts before previous end time 344.11
Error: (345.4, 345.7, 'matching') starts before previous end time 345.40999999999997
Error: (346.0, 346.6, 'carpet,') starts before previous end time 346.01
Error: (350.0, 350.3, 'I') starts before previous end time 350.01
Error: (366.0, 366.8, 'tailored') starts before previous end time 366.01
Error: (380.7, 380.8, 'put') starts before previous end time 380.71
Error: (396.1, 396.4, 'so') starts before previous end time 396.11
Error: (406.6, 406.9, 'this') starts before previous end time 406.61
Error: (413.6, 414.1, 'but') starts before previous end time 413.61
Error: (415.3, 415.4, 'bit') starts before previous end time 415.31
Error: (416.4, 416.6, 'use') starts before previous end time 416.40999999999997
Error: (417.0, 417.2, 'as') starts before previous end time 417.01
Error: (470.9, 471.3, 'this') starts before previous end time 470.90999999999997
Error: (475.1, 475.4, 'the') starts before previous end time 475.11
Error: (481.6, 481.8, 'the') starts before previous end time 481.61
Error: (493.2, 493.5, 'of') starts before previous end time 493.21
Error: (493.5, 493.7, 'not.') starts before previous end time 493.51
Error: (494.6, 494.8, 'I') starts before previous end time 494.61
Error: (501.2, 501.5, 'the') starts before previous end time 501.21
Error: (512.4, 512.5, 'think') starts before previous end time 512.41
Error: (512.5, 512.6, 'the') starts before previous end time 512.51
Error: (513.4, 513.5, 'think') starts before previous end time 513.41
Error: (522.7, 522.9, 'sense.') starts before previous end time 522.71
Error: (581.5, 581.7, 'the') starts before previous end time 581.51
Error: (589.6, 590.1, 'I,') starts before previous end time 589.61
Error: (606.4, 606.7, 'have') starts before previous end time 606.41
Error: (613.4, 613.7, 'some') starts before previous end time 613.41
Error: (619.2, 619.8, 'great.') starts before previous end time 619.21
Error: (625.8, 626.1, 'very') starts before previous end time 625.81
Maximum timestamp in Textgrid changed from (626.1) to (626.11)
Textgrid has a max timestamp of (626.11) but tier has (626.1)
/Users/joregan/Playing/hsi_google/hsi_4_0716_211_002_inter.json
Error: (14.8, 15.2, 'strange.') starts before previous end time 14.81
Error: (50.6, 50.61, 'wonder') starts before previous end time 50.61
Error: (50.6, 50.7, 'if') starts before previous end time 50.62
Error: (54.9, 55.2, 'so') starts before previous end time 54.91
Error: (55.3, 55.6, 'do') starts before previous end time 55.309999999999995
Error: (57.1, 57.4, 'finished') starts before previous end time 57.11
Error: (78.7, 78.9, 'it') starts before previous end time 78.71000000000001
Error: (97.4, 97.7, 'Yeah,') starts before previous end time 97.41000000000001
Error: (97.9, 98.3, 'we') starts before previous end time 97.91000000000001
Error: (98.3, 98.8, 'do') starts before previous end time 98.31
Error: (101.5, 101.7, 'we') starts before previous end time 101.51
Error: (101.7, 102.1, 'just') starts before previous end time 101.71000000000001
Error: (104.4, 104.9, 'too?') starts before previous end time 104.41000000000001
Error: (110.6, 111.0, 'yeah') starts before previous end time 110.61
Error: (118.8, 118.9, 'can') starts before previous end time 118.81
Error: (125.9, 126.1, 'too') starts before previous end time 125.91000000000001
Error: (133.8, 134.1, 'the') starts before previous end time 133.81
Error: (152.8, 153.4, 'sometime.') starts before previous end time 152.81
Error: (154.9, 155.2, 'them.') starts before previous end time 154.91
Error: (155.5, 156.2, 'I') starts before previous end time 155.51
Error: (156.4, 156.6, 'friendly') starts before previous end time 156.41
Error: (170.9, 171.4, 'but') starts before previous end time 170.91
Error: (171.7, 172.0, 'do') starts before previous end time 171.70999999999998
Error: (172.0, 172.1, 'mean?') starts before previous end time 172.01
Error: (178.4, 178.5, 'be.') starts before previous end time 178.41
Error: (181.3, 181.5, 'a') starts before previous end time 181.31
Error: (185.3, 185.31, 'back') starts before previous end time 185.31
Error: (185.3, 185.6, 'though?') starts before previous end time 185.32
Error: (186.5, 187.3, 'Yeah.') starts before previous end time 186.51
Error: (193.6, 193.8, 'mobile.') starts before previous end time 193.60999999999999
Error: (202.4, 202.8, 'familiar') starts before previous end time 202.41
Error: (205.7, 206.0, 'bad') starts before previous end time 205.70999999999998
Error: (208.2, 208.3, 'I') starts before previous end time 208.20999999999998
Error: (221.2, 221.5, 'something') starts before previous end time 221.20999999999998
Error: (232.5, 232.51, 'it') starts before previous end time 232.51
Error: (232.5, 232.6, 'by') starts before previous end time 232.51999999999998
Error: (258.2, 258.8, 'purchased') starts before previous end time 258.21
Error: (259.1, 259.4, 'I') starts before previous end time 259.11
Error: (262.0, 262.3, 'from') starts before previous end time 262.01
Error: (276.8, 277.4, 'played') starts before previous end time 276.81
Error: (277.4, 277.5, 'game') starts before previous end time 277.40999999999997
Error: (278.9, 279.1, 'lucky.') starts before previous end time 278.90999999999997
Error: (312.7, 312.9, 'we') starts before previous end time 312.71
Error: (314.6, 314.61, 'of') starts before previous end time 314.61
Error: (314.6, 314.8, 'this.') starts before previous end time 314.62
Error: (318.6, 319.1, 'which') starts before previous end time 318.61
Error: (324.2, 324.4, 'in') starts before previous end time 324.21
Error: (326.8, 327.7, 'this') starts before previous end time 326.81
/Users/joregan/Playing/hsi_google/hsi_5_0718_227_002_inter.json
Error: (15.9, 16.0, 'coming.') starts before previous end time 15.91
Error: (18.8, 19.8, 'and') starts before previous end time 18.810000000000002
Error: (54.5, 54.8, 'cramped') starts before previous end time 54.51
Error: (135.0, 135.2, 'Which') starts before previous end time 135.01
Error: (177.3, 177.5, "it's") starts before previous end time 177.31
Error: (189.2, 189.6, 'move') starts before previous end time 189.20999999999998
Error: (190.2, 190.5, "it's") starts before previous end time 190.20999999999998
Error: (190.5, 191.0, 'not.') starts before previous end time 190.51
Error: (194.8, 195.0, 'middle.') starts before previous end time 194.81
Error: (229.2, 229.5, 'have') starts before previous end time 229.20999999999998
Error: (229.5, 229.7, 'lot') starts before previous end time 229.51
Error: (230.7, 230.9, 'table,') starts before previous end time 230.70999999999998
Error: (231.6, 231.9, 'place') starts before previous end time 231.60999999999999
Error: (243.9, 244.0, 'mean?') starts before previous end time 243.91
Error: (265.7, 266.1, 'this') starts before previous end time 265.71
Error: (284.3, 284.31, 'be') starts before previous end time 284.31
Error: (284.3, 284.5, 'I') starts before previous end time 284.32
Error: (284.5, 284.7, 'I') starts before previous end time 284.51
Error: (341.6, 341.9, 'are') starts before previous end time 341.61
Error: (341.9, 341.90999999999997, 'same') starts before previous end time 341.90999999999997
Error: (341.9, 342.1, 'so') starts before previous end time 341.91999999999996
Error: (355.4, 355.7, 'remove') starts before previous end time 355.40999999999997
Error: (356.4, 356.6, "it's") starts before previous end time 356.40999999999997
Error: (376.8, 376.9, 'keep') starts before previous end time 376.81
Error: (397.8, 398.0, "that's") starts before previous end time 397.81
Error: (401.1, 401.3, 'head.') starts before previous end time 401.11
Error: (456.2, 456.5, 'it') starts before previous end time 456.21
Error: (456.6, 456.8, 'good') starts before previous end time 456.61
Error: (457.1, 457.2, 'the') starts before previous end time 457.11
Error: (474.4, 474.8, 'need') starts before previous end time 474.40999999999997
Error: (474.8, 475.2, 'Like') starts before previous end time 474.81
Error: (475.4, 475.5, 'store') starts before previous end time 475.40999999999997
Error: (479.5, 480.2, 'Yes.') starts before previous end time 479.51
Error: (480.5, 480.7, 'to') starts before previous end time 480.51
Error: (493.7, 494.2, 'it') starts before previous end time 493.71
/Users/joregan/Playing/hsi_google/hsi_4_0717_211_001_inter.json
Error: (7.5, 7.6, 'not') starts before previous end time 7.51
Error: (30.0, 30.2, 'a') starts before previous end time 30.01
Error: (52.4, 52.9, 'Oh,') starts before previous end time 52.41
Error: (68.5, 68.9, 'good') starts before previous end time 68.51
Error: (105.6, 105.8, 'is') starts before previous end time 105.61
Error: (105.8, 105.9, 'favorite.') starts before previous end time 105.81
Error: (113.4, 113.7, 'that?') starts before previous end time 113.41000000000001
Error: (123.8, 124.0, 'bit') starts before previous end time 123.81
Error: (171.7, 171.8, 'chair') starts before previous end time 171.70999999999998
Error: (178.4, 178.5, 'good.') starts before previous end time 178.41
Error: (185.4, 185.7, 'dangerous.') starts before previous end time 185.41
Error: (256.9, 256.90999999999997, 'do') starts before previous end time 256.90999999999997
Error: (256.9, 257.1, 'something') starts before previous end time 256.91999999999996
Error: (257.5, 257.9, 'lighting') starts before previous end time 257.51
Error: (259.4, 259.40999999999997, 'bit') starts before previous end time 259.40999999999997
Error: (259.4, 259.6, 'dark') starts before previous end time 259.41999999999996
Error: (266.7, 267.0, 'once.') starts before previous end time 266.71
Error: (291.3, 291.6, 'in') starts before previous end time 291.31
Error: (316.6, 317.5, 'And') starts before previous end time 316.61
Error: (317.5, 317.6, 'course,') starts before previous end time 317.51
Error: (334.2, 334.5, 'the') starts before previous end time 334.21
Error: (345.7, 345.71, 'good') starts before previous end time 345.71
Error: (345.7, 345.8, 'question.') starts before previous end time 345.71999999999997
Error: (387.5, 387.7, 'card,') starts before previous end time 387.51
Error: (387.9, 388.2, 'Yeah.') starts before previous end time 387.90999999999997
Error: (397.6, 397.8, 'contact') starts before previous end time 397.61
Error: (405.9, 406.1, "it's") starts before previous end time 405.90999999999997
Error: (407.7, 407.71, 'back') starts before previous end time 407.71
Error: (407.7, 408.2, 'when') starts before previous end time 407.71999999999997
Error: (408.2, 408.3, 'more') starts before previous end time 408.21
/Users/joregan/Playing/hsi_google/hsi_5_0718_211_001_main.json
Error: (13.3, 13.4, 'right') starts before previous end time 13.31
Error: (43.5, 43.8, 'okay.') starts before previous end time 43.51
Error: (46.6, 47.5, 'uh') starts before previous end time 46.61
/Users/joregan/Playing/hsi_google/hsi_2_0613_000_008_main.json
Error: (12.0, 12.4, 'all') starts before previous end time 12.01
Error: (14.4, 14.5, 'the') starts before previous end time 14.41
Error: (23.2, 24.0, 'And') starts before previous end time 23.21
Error: (24.4, 25.1, 'the') starts before previous end time 24.41
Error: (26.2, 26.4, 'as') starts before previous end time 26.21
Error: (27.7, 27.9, 'from') starts before previous end time 27.71
Error: (33.1, 33.3, 'can') starts before previous end time 33.11
Error: (47.2, 47.21, 'of') starts before previous end time 47.21
Error: (47.2, 47.4, 'the') starts before previous end time 47.22
Error: (55.4, 55.8, 'a') starts before previous end time 55.41
Error: (62.0, 62.4, 'couch,') starts before previous end time 62.01
Error: (63.2, 63.6, 'alone,') starts before previous end time 63.21
Error: (63.8, 63.9, 'just') starts before previous end time 63.809999999999995
Error: (66.3, 66.6, 'Actually,') starts before previous end time 66.31
Error: (70.0, 70.2, 'actually') starts before previous end time 70.01
Error: (77.0, 77.1, 'never') starts before previous end time 77.01
Error: (92.7, 92.8, 'put') starts before previous end time 92.71000000000001
Error: (92.8, 93.3, 'feet') starts before previous end time 92.81
Error: (98.9, 99.2, 'always') starts before previous end time 98.91000000000001
Error: (101.8, 102.5, 'your') starts before previous end time 101.81
Error: (102.9, 103.3, 'everywhere') starts before previous end time 102.91000000000001
Error: (105.7, 106.1, 'smaller') starts before previous end time 105.71000000000001
Error: (113.3, 113.5, 'because') starts before previous end time 113.31
Error: (118.5, 118.51, 'to') starts before previous end time 118.51
Error: (118.5, 118.8, 'wash') starts before previous end time 118.52000000000001
Error: (123.0, 123.2, 'this') starts before previous end time 123.01
Error: (138.4, 138.8, 'a') starts before previous end time 138.41
Error: (142.9, 143.1, 'just') starts before previous end time 142.91
Error: (145.5, 145.9, 'time') starts before previous end time 145.51
Error: (148.5, 148.6, 'of') starts before previous end time 148.51
Error: (151.1, 151.6, 'We') starts before previous end time 151.10999999999999
Error: (158.8, 159.3, 'want') starts before previous end time 158.81
Error: (167.5, 167.9, 'walls.') starts before previous end time 167.51
Error: (168.1, 168.6, 'of') starts before previous end time 168.10999999999999
Error: (169.8, 170.0, 'want') starts before previous end time 169.81
Error: (172.8, 172.9, 'good') starts before previous end time 172.81
Error: (175.2, 175.9, "it's") starts before previous end time 175.20999999999998
Error: (176.3, 176.6, 'floor.') starts before previous end time 176.31
Error: (176.8, 177.0, 'like') starts before previous end time 176.81
Error: (178.5, 179.0, 'walls') starts before previous end time 178.51
Error: (179.1, 179.4, 'white') starts before previous end time 179.10999999999999
Error: (184.8, 184.9, 'If') starts before previous end time 184.81
Error: (185.2, 185.6, 'left') starts before previous end time 185.20999999999998
Error: (199.8, 199.9, 'says') starts before previous end time 199.81
Error: (218.1, 218.6, 'disappeared.') starts before previous end time 218.10999999999999
Error: (270.5, 271.1, 'whole') starts before previous end time 270.51
Error: (298.8, 299.7, 'see') starts before previous end time 298.81
Error: (306.4, 306.7, 'I') starts before previous end time 306.40999999999997
Error: (306.7, 307.2, 'like') starts before previous end time 306.71
Error: (309.5, 309.7, 'me.') starts before previous end time 309.51
/Users/joregan/Playing/hsi_google/hsi_2_0613_209_001_inter.json
Error: (17.4, 17.7, 'Yeah.') starts before previous end time 17.41
Error: (29.1, 29.3, 'watch') starts before previous end time 29.110000000000003
Error: (31.6, 31.610000000000003, 'see') starts before previous end time 31.610000000000003
Error: (31.6, 32.2, 'the') starts before previous end time 31.620000000000005
Error: (39.6, 39.9, 'is') starts before previous end time 39.61
Error: (41.4, 41.6, 'like') starts before previous end time 41.41
Error: (45.4, 45.6, 'time.') starts before previous end time 45.41
Error: (56.1, 56.2, 'just') starts before previous end time 56.11
Error: (56.5, 56.8, 'relax') starts before previous end time 56.51
Error: (57.3, 57.5, 'some') starts before previous end time 57.309999999999995
Error: (58.8, 58.9, 'time,') starts before previous end time 58.809999999999995
Error: (59.4, 59.5, 'sit') starts before previous end time 59.41
Error: (108.0, 108.1, 'see') starts before previous end time 108.01
Error: (111.4, 111.7, 'hide') starts before previous end time 111.41000000000001
Error: (170.4, 170.6, 'your') starts before previous end time 170.41
Error: (186.3, 186.5, 'I') starts before previous end time 186.31
Error: (186.5, 186.6, 'my') starts before previous end time 186.51
Error: (249.1, 249.10999999999999, 'have') starts before previous end time 249.10999999999999
Error: (249.1, 249.4, 'plants?') starts before previous end time 249.11999999999998
Error: (260.0, 260.2, 'to') starts before previous end time 260.01
Error: (260.9, 261.3, 'plants.') starts before previous end time 260.90999999999997
Error: (293.4, 293.5, 'the') starts before previous end time 293.40999999999997
Error: (348.5, 348.7, 'going') starts before previous end time 348.51
Error: (348.8, 349.4, 'Hmm.') starts before previous end time 348.81
Error: (393.7, 394.2, 'for') starts before previous end time 393.71
Error: (423.8, 424.2, 'Okay.') starts before previous end time 423.81
Error: (424.4, 424.7, 'can') starts before previous end time 424.40999999999997
Error: (424.7, 424.9, 'just') starts before previous end time 424.71
/Users/joregan/Playing/hsi_google/hsi_6_0718_227_002_inter.json
Error: (16.4, 17.2, 'went') starts before previous end time 16.41
Error: (18.4, 18.7, 'so') starts before previous end time 18.41
Error: (22.3, 22.310000000000002, 'give') starts before previous end time 22.310000000000002
Error: (22.3, 22.4, 'me') starts before previous end time 22.320000000000004
Error: (25.4, 25.5, 'me') starts before previous end time 25.41
Error: (33.4, 34.3, 'page.') starts before previous end time 33.41
Error: (50.6, 50.9, "didn't") starts before previous end time 50.61
Error: (52.5, 52.7, 'I') starts before previous end time 52.51
Error: (68.2, 69.0, 'and') starts before previous end time 68.21000000000001
Error: (77.3, 77.5, 'them') starts before previous end time 77.31
Error: (94.5, 94.7, 'in') starts before previous end time 94.51
Error: (94.7, 94.8, 'room.') starts before previous end time 94.71000000000001
Error: (97.2, 97.7, 'overwhelming.') starts before previous end time 97.21000000000001
Error: (99.6, 100.0, 'a') starts before previous end time 99.61
Error: (108.7, 108.9, "it's") starts before previous end time 108.71000000000001
Error: (126.4, 127.2, 'do') starts before previous end time 126.41000000000001
Error: (127.3, 127.31, 'any') starts before previous end time 127.31
Error: (127.3, 127.5, 'other') starts before previous end time 127.32000000000001
Error: (128.4, 128.6, 'it?') starts before previous end time 128.41
Error: (136.2, 136.4, 'guys') starts before previous end time 136.20999999999998
Error: (137.0, 137.2, 'that.') starts before previous end time 137.01
Error: (142.7, 143.2, 'you') starts before previous end time 142.70999999999998
Error: (143.5, 143.6, 'get') starts before previous end time 143.51
Error: (163.5, 163.6, 'I') starts before previous end time 163.51
Error: (170.2, 170.5, 'interior') starts before previous end time 170.20999999999998
Error: (208.3, 208.31, 'be') starts before previous end time 208.31
Error: (208.3, 208.7, 'in') starts before previous end time 208.32
Error: (208.9, 209.1, 'right?') starts before previous end time 208.91
Error: (210.1, 210.2, 'it') starts before previous end time 210.10999999999999
Error: (212.9, 213.0, 'know.') starts before previous end time 212.91
Error: (213.5, 213.9, 'probably') starts before previous end time 213.51
Error: (219.5, 219.6, 'move') starts before previous end time 219.51
Error: (256.2, 256.4, 'to') starts before previous end time 256.21
Error: (256.4, 257.4, 'especially') starts before previous end time 256.40999999999997
Error: (257.7, 258.2, 'Look') starts before previous end time 257.71
Error: (259.5, 259.7, 'that') starts before previous end time 259.51
Error: (260.1, 260.3, 'right.') starts before previous end time 260.11
Error: (261.9, 264.2, 'oh') starts before previous end time 261.90999999999997
Error: (264.2, 264.3, 'God,') starts before previous end time 264.21
Error: (264.6, 264.9, 'put') starts before previous end time 264.61
Error: (268.2, 268.8, 'box') starts before previous end time 268.21
Error: (272.7, 272.8, 'the') starts before previous end time 272.71
Error: (274.4, 274.40999999999997, 'out.') starts before previous end time 274.40999999999997
Error: (289.9, 290.3, 'way') starts before previous end time 289.90999999999997
Error: (290.5, 290.6, 'rid') starts before previous end time 290.51
Error: (293.6, 293.8, 'live') starts before previous end time 293.61
Error: (298.1, 298.3, 'a') starts before previous end time 298.11
Error: (312.0, 312.4, 'are') starts before previous end time 312.01
Error: (330.2, 330.5, 'like') starts before previous end time 330.21
Error: (330.5, 331.0, 'Yeah.') starts before previous end time 330.51
Error: (331.3, 331.6, 'My') starts before previous end time 331.31
Error: (335.5, 335.6, 'why') starts before previous end time 335.51
Error: (346.3, 346.5, 'other') starts before previous end time 346.31
Error: (348.1, 348.5, 'more.') starts before previous end time 348.11
Error: (353.5, 353.6, 'of') starts before previous end time 353.51
Error: (357.6, 358.0, 'that') starts before previous end time 357.61
Error: (359.8, 360.2, 'like') starts before previous end time 359.81
/Users/joregan/Playing/hsi_google/hsi_6_0718_209_001_inter.json
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': 'this is'}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': ' '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': 'mhm'}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Still no end time? {'transcript': '<noise> '}
Empty results /Users/joregan/Playing/hsi_google/hsi_6_0718_209_001_inter.json
/Users/joregan/Playing/hsi_google/hsi_3_0715_007_inter.json
Error: (4.2, 4.21, 'table.') starts before previous end time 4.21
Error: (19.7, 19.8, 'well') starts before previous end time 19.71
Error: (23.7, 24.0, 'I,') starts before previous end time 23.71
Error: (25.7, 25.9, 'good') starts before previous end time 25.71
Error: (51.4, 51.8, 'it') starts before previous end time 51.41
Error: (55.0, 55.1, 'I') starts before previous end time 55.01
Error: (61.0, 61.5, 'I') starts before previous end time 61.01
Error: (61.5, 61.7, 'I') starts before previous end time 61.51
Error: (61.7, 61.9, 'want') starts before previous end time 61.71
Error: (65.6, 65.8, 'because') starts before previous end time 65.61
Error: (70.8, 71.0, 'So') starts before previous end time 70.81
Error: (74.6, 75.0, 'you') starts before previous end time 74.61
Error: (87.3, 87.6, 'but') starts before previous end time 87.31
Error: (87.9, 88.3, 'if') starts before previous end time 87.91000000000001
Error: (90.3, 90.7, 'we') starts before previous end time 90.31
Error: (92.0, 92.6, 'because') starts before previous end time 92.01
Error: (92.8, 93.0, 'it') starts before previous end time 92.81
Error: (94.7, 95.3, 'uh') starts before previous end time 94.71000000000001
Error: (99.6, 99.7, 'back.') starts before previous end time 99.61
Error: (114.4, 114.5, 'thought') starts before previous end time 114.41000000000001
Error: (115.4, 115.7, 'better.') starts before previous end time 115.41000000000001
Error: (133.6, 133.8, 'body.') starts before previous end time 133.60999999999999
Error: (159.4, 159.6, 'that') starts before previous end time 159.41
Error: (160.7, 161.0, 'the') starts before previous end time 160.70999999999998
Error: (178.9, 179.2, 'pick') starts before previous end time 178.91
Error: (199.5, 199.8, 'where') starts before previous end time 199.51
Error: (199.8, 200.1, 'left') starts before previous end time 199.81
/Users/joregan/Playing/hsi_google/hsi_4_0717_211_003_main.json
Error: (30.7, 31.8, 'a') starts before previous end time 30.71
Error: (44.7, 45.4, 'armchair,') starts before previous end time 44.71
Error: (46.2, 46.5, 'they') starts before previous end time 46.21
Error: (51.6, 51.8, 'together') starts before previous end time 51.61
Error: (58.4, 58.8, 'together.') starts before previous end time 58.41
Error: (72.7, 72.8, 'about') starts before previous end time 72.71000000000001
Error: (79.3, 79.4, 'about') starts before previous end time 79.31
Error: (86.8, 86.9, 'big') starts before previous end time 86.81
Error: (110.0, 110.1, "don't") starts before previous end time 110.01
Error: (129.1, 129.6, 'pillows') starts before previous end time 129.10999999999999
Error: (139.4, 139.8, 'side') starts before previous end time 139.41
Error: (157.1, 157.6, 'uh,') starts before previous end time 157.10999999999999
Error: (167.6, 167.7, 'other.') starts before previous end time 167.60999999999999
Error: (168.2, 168.5, 'nice.') starts before previous end time 168.20999999999998
Error: (174.9, 175.5, 'Because') starts before previous end time 174.91
Error: (176.3, 177.6, 'misplaced.') starts before previous end time 176.31
Error: (179.4, 179.9, 'lamp') starts before previous end time 179.41
Error: (184.7, 185.0, 'know') starts before previous end time 184.70999999999998
Error: (187.3, 187.5, 'a') starts before previous end time 187.31
Error: (192.1, 192.5, 'bosses') starts before previous end time 192.10999999999999
Error: (194.3, 195.2, 'bookshelf,') starts before previous end time 194.31
Error: (201.2, 201.8, 'the') starts before previous end time 201.20999999999998
Error: (204.0, 204.3, 'that') starts before previous end time 204.01
Error: (205.9, 206.3, 'couch.') starts before previous end time 205.91
Error: (208.5, 208.8, 'nice.') starts before previous end time 208.51
Error: (218.7, 218.8, 'of') starts before previous end time 218.70999999999998
Error: (222.0, 222.1, 'get') starts before previous end time 222.01
Error: (225.6, 225.8, 'in') starts before previous end time 225.60999999999999
Error: (225.8, 226.5, 'voses.') starts before previous end time 225.81
Error: (231.7, 232.0, 'idea,') starts before previous end time 231.70999999999998
Error: (236.6, 236.7, 'those.') starts before previous end time 236.60999999999999
Error: (243.5, 244.0, "TV's") starts before previous end time 243.51
Error: (245.2, 245.5, 'moved') starts before previous end time 245.20999999999998
Error: (254.3, 254.7, '1.') starts before previous end time 254.31
Error: (260.9, 261.0, 'a') starts before previous end time 260.90999999999997
Error: (288.0, 288.3, 'so') starts before previous end time 288.01
Error: (294.9, 295.3, 'dark.') starts before previous end time 294.90999999999997
Error: (297.0, 297.3, 'very') starts before previous end time 297.01
Error: (302.3, 302.9, 'Still') starts before previous end time 302.31
Error: (311.8, 312.2, 'ceiling.') starts before previous end time 311.81
Error: (314.7, 314.8, 'have') starts before previous end time 314.71
Error: (319.8, 320.0, 'have') starts before previous end time 319.81
Error: (334.2, 334.8, 'Good') starts before previous end time 334.21
Error: (335.3, 335.6, 'apartment') starts before previous end time 335.31
Error: (336.2, 336.5, 'rid') starts before previous end time 336.21
Error: (336.5, 336.6, 'the') starts before previous end time 336.51
Error: (337.5, 338.4, 'Get') starts before previous end time 337.51
/Users/joregan/Playing/hsi_google/hsi_4_0717_210_003_inter.json
Error: (212.2, 212.4, 'I') starts before previous end time 212.20999999999998
Error: (212.6, 213.0, 'highlight') starts before previous end time 212.60999999999999
Error: (213.5, 213.6, 'more.') starts before previous end time 213.51
Error: (223.6, 225.0, 'Maybe') starts before previous end time 223.7
Error: (254.4, 254.5, 'it') starts before previous end time 254.41
Error: (262.4, 262.6, 'a') starts before previous end time 262.40999999999997
Error: (262.6, 262.8, 'dangerous.') starts before previous end time 262.61
Error: (273.6, 273.61, 'I') starts before previous end time 273.61
Error: (273.6, 273.7, 'put') starts before previous end time 273.62
Error: (273.7, 274.0, 'remote?') starts before previous end time 273.71
Error: (278.9, 279.7, "I'm") starts before previous end time 278.90999999999997
Error: (279.8, 280.6, 'forgetful.') starts before previous end time 279.81
Error: (296.3, 296.5, 'idea.') starts before previous end time 296.31
Error: (310.8, 311.4, "there's") starts before previous end time 310.81
Error: (317.1, 317.2, 'be') starts before previous end time 317.11
Error: (332.0, 332.4, "That's") starts before previous end time 332.01
Error: (415.4, 415.9, 'Jungle') starts before previous end time 415.40999999999997
Error: (436.0, 436.1, 'this.') starts before previous end time 436.01
/Users/joregan/Playing/hsi_google/hsi_4_0716_227_001_inter.json
Error: (17.0, 17.01, 'is') starts before previous end time 17.01
Error: (29.3, 29.8, 'large.') starts before previous end time 29.310000000000002
Error: (67.1, 67.6, 'very') starts before previous end time 67.11
Error: (77.0, 77.3, 'cinema,') starts before previous end time 77.01
Error: (86.4, 86.6, 'a') starts before previous end time 86.41000000000001
Error: (135.3, 135.5, 'is') starts before previous end time 135.31
Error: (158.5, 159.2, 'African') starts before previous end time 158.51
Error: (176.1, 176.3, 'cool.') starts before previous end time 176.10999999999999
Error: (199.4, 199.5, 'a') starts before previous end time 199.41
Error: (215.5, 216.2, "It's") starts before previous end time 215.51
Error: (229.4, 229.7, 'good?') starts before previous end time 229.41
Error: (250.0, 250.5, 'what') starts before previous end time 250.01
/Users/joregan/Playing/hsi_google/hsi_1_0515_227_001_main.json
Error: (16.6, 17.6, 'Thank') starts before previous end time 16.610000000000003
Error: (19.4, 19.7, 'back') starts before previous end time 19.41
Error: (29.7, 29.9, 'the') starts before previous end time 29.71
Error: (39.6, 40.2, 'it') starts before previous end time 39.61
Error: (40.2, 40.4, 'be') starts before previous end time 40.21
Error: (53.0, 53.2, 'be') starts before previous end time 53.01
Error: (67.6, 68.1, 'So') starts before previous end time 67.61
Error: (71.6, 71.8, 'a') starts before previous end time 71.61
Error: (76.2, 76.3, 'other') starts before previous end time 76.21000000000001
Error: (99.3, 99.6, 'So') starts before previous end time 99.31
Error: (121.4, 121.41000000000001, 'very') starts before previous end time 121.41000000000001
Error: (121.4, 121.9, 'nice') starts before previous end time 121.42000000000002
Error: (126.9, 127.0, 'is') starts before previous end time 126.91000000000001
Error: (128.3, 128.6, 'table.') starts before previous end time 128.31
Error: (140.6, 141.2, 'more') starts before previous end time 140.60999999999999
Error: (144.4, 144.8, 'to,') starts before previous end time 144.41
Error: (159.7, 160.0, 'hand.') starts before previous end time 159.70999999999998
Error: (171.0, 171.2, 'what.') starts before previous end time 171.01
Error: (178.0, 178.6, 'twisted.') starts before previous end time 178.01
/Users/joregan/Playing/hsi_google/hsi_1_0515_227_001_inter.json
Error: (13.6, 13.9, 'here.') starts before previous end time 13.61
Error: (16.7, 17.6, 'Thank') starts before previous end time 16.71
Error: (38.4, 38.7, 'its') starts before previous end time 38.41
Error: (53.3, 53.6, 'an') starts before previous end time 53.309999999999995
Error: (67.7, 68.0, 'So') starts before previous end time 67.71000000000001
Error: (69.8, 70.1, 'if') starts before previous end time 69.81
Error: (71.6, 71.9, 'a') starts before previous end time 71.61
Error: (76.3, 76.6, 'side,') starts before previous end time 76.31
Error: (98.1, 98.5, 'very') starts before previous end time 98.11
Error: (103.2, 103.4, 'that') starts before previous end time 103.21000000000001
Error: (103.7, 103.9, 'in') starts before previous end time 103.71000000000001
Error: (104.3, 104.5, '1') starts before previous end time 104.31
Error: (113.9, 114.4, '16') starts before previous end time 113.91000000000001
Error: (117.3, 118.3, 'I') starts before previous end time 117.31
Error: (130.6, 131.2, 'uh,') starts before previous end time 130.60999999999999
Error: (140.6, 141.2, 'more') starts before previous end time 140.60999999999999
Error: (152.4, 152.6, 'amazing?') starts before previous end time 152.41
Error: (155.9, 156.1, 'out') starts before previous end time 155.91
Error: (165.7, 165.9, 'to') starts before previous end time 165.70999999999998
Error: (171.0, 171.01, 'know') starts before previous end time 171.01
Error: (171.0, 171.2, 'what') starts before previous end time 171.01999999999998
Error: (175.4, 175.8, 'front.') starts before previous end time 175.41
/Users/joregan/Playing/hsi_google/hsi_4_0716_209_002_inter.json
Error: (22.8, 22.810000000000002, 'bit') starts before previous end time 22.810000000000002
Error: (22.8, 23.0, 'of') starts before previous end time 22.820000000000004
Error: (29.6, 29.7, 'back') starts before previous end time 29.610000000000003
Error: (35.6, 35.9, 'enjoy') starts before previous end time 35.61
Error: (43.9, 44.1, 'you') starts before previous end time 43.91
Error: (46.3, 46.4, 'mean?') starts before previous end time 46.309999999999995
Error: (61.5, 61.8, 'look') starts before previous end time 61.51
Error: (62.0, 62.3, 'rooms.') starts before previous end time 62.01
Error: (62.5, 63.4, 'maybe') starts before previous end time 62.51
Error: (67.0, 67.4, 'I') starts before previous end time 67.01
Error: (92.7, 93.3, 'cleared') starts before previous end time 92.71000000000001
Error: (105.2, 105.3, 'to.') starts before previous end time 105.21000000000001
Error: (120.4, 120.6, 'did') starts before previous end time 120.41000000000001
Error: (120.6, 121.3, 'yesterday.') starts before previous end time 120.61
Error: (127.8, 128.0, 'very') starts before previous end time 127.81
Error: (146.1, 146.9, 'but') starts before previous end time 146.10999999999999
Error: (157.1, 157.3, 'to') starts before previous end time 157.10999999999999
Error: (182.6, 182.9, 'I') starts before previous end time 182.60999999999999
Error: (226.3, 226.4, 'the') starts before previous end time 226.31
Error: (228.0, 228.2, 'TV.') starts before previous end time 228.01
Error: (260.4, 260.7, 'remove') starts before previous end time 260.40999999999997
Error: (270.5, 270.8, 'like') starts before previous end time 270.51
/Users/joregan/Playing/hsi_google/hsi_1_0515_209_002_inter.json
Error: (2.7, 2.8, 'that.') starts before previous end time 2.71
Error: (4.6, 4.7, "it's") starts before previous end time 4.609999999999999
Error: (21.1, 21.110000000000003, 'see') starts before previous end time 21.110000000000003
Error: (21.1, 21.2, 'me?') starts before previous end time 21.120000000000005
Error: (21.7, 21.9, 'point') starts before previous end time 21.71
Error: (31.9, 33.3, 'move') starts before previous end time 31.91
Error: (36.7, 36.71, 'like') starts before previous end time 36.71
Error: (36.7, 36.9, 'to') starts before previous end time 36.72
Error: (42.0, 42.2, 'it') starts before previous end time 42.01
Error: (49.6, 50.4, 'maybe') starts before previous end time 49.61
Error: (58.5, 59.2, 'Maybe') starts before previous end time 58.51
Error: (62.2, 62.3, "it's") starts before previous end time 62.21
Error: (62.3, 62.7, 'behind') starts before previous end time 62.309999999999995
Error: (64.5, 64.6, 'very') starts before previous end time 64.51
Error: (65.3, 65.5, 'could') starts before previous end time 65.31
Error: (67.2, 67.5, 'be') starts before previous end time 67.21000000000001
Error: (68.8, 68.9, 'on') starts before previous end time 68.81
Error: (68.9, 70.2, 'fireplace') starts before previous end time 68.91000000000001
Error: (70.8, 71.2, 'there') starts before previous end time 70.81
Error: (71.4, 71.6, 'center.') starts before previous end time 71.41000000000001
Error: (80.7, 81.0, 'mirror.') starts before previous end time 80.71000000000001
Error: (83.0, 83.4, 'noise.') starts before previous end time 83.01
Error: (94.7, 94.9, 'Okay,') starts before previous end time 94.71000000000001
Error: (103.6, 104.0, 'planet.') starts before previous end time 103.61
Error: (127.8, 127.9, 'other') starts before previous end time 127.81
Error: (133.6, 133.9, 'maybe') starts before previous end time 133.60999999999999
Error: (144.1, 144.4, 'floor.') starts before previous end time 144.10999999999999
Error: (149.7, 150.2, "it's") starts before previous end time 149.70999999999998
Error: (152.1, 152.4, 'you') starts before previous end time 152.10999999999999
Error: (152.4, 152.7, 'from') starts before previous end time 152.41
Error: (158.8, 158.9, 'kind') starts before previous end time 158.81
Error: (158.9, 160.0, 'construction') starts before previous end time 158.91
Error: (161.4, 161.5, 'like') starts before previous end time 161.41
Error: (168.2, 168.20999999999998, 'that') starts before previous end time 168.20999999999998
Error: (168.2, 168.5, 'idea.') starts before previous end time 168.21999999999997
Error: (180.5, 180.6, 'think') starts before previous end time 180.51
Error: (183.0, 183.1, 'roof.') starts before previous end time 183.01
Error: (188.3, 188.7, 'plant') starts before previous end time 188.31
Error: (195.6, 195.8, 'laptop.') starts before previous end time 195.60999999999999
Error: (199.0, 199.4, 'problem,') starts before previous end time 199.01
Error: (206.6, 206.60999999999999, 'have') starts before previous end time 206.60999999999999
Error: (206.6, 206.7, 'a') starts before previous end time 206.61999999999998
Error: (209.9, 210.0, 'want') starts before previous end time 209.91
Error: (213.1, 213.3, 'want') starts before previous end time 213.10999999999999
Error: (214.4, 214.41, 'have') starts before previous end time 214.41
Error: (214.4, 214.5, 'a') starts before previous end time 214.42
Error: (216.3, 217.3, 'there,') starts before previous end time 216.31
Error: (224.2, 224.3, 'what') starts before previous end time 224.20999999999998
Error: (224.5, 224.6, 'call') starts before previous end time 224.51
Error: (227.7, 227.9, 'want') starts before previous end time 227.70999999999998
Error: (227.9, 228.3, 'sit') starts before previous end time 227.91
Error: (237.0, 237.1, 'think') starts before previous end time 237.01
Error: (242.0, 242.3, 'couch,') starts before previous end time 242.01
Error: (243.6, 244.3, 'could') starts before previous end time 243.60999999999999
Error: (248.8, 248.9, 'idea.') starts before previous end time 248.81
Error: (250.1, 250.2, 'there') starts before previous end time 250.10999999999999
Error: (252.3, 252.6, 'there?') starts before previous end time 252.31
Error: (254.6, 254.8, "it's") starts before previous end time 254.60999999999999
Error: (257.0, 258.1, 'Mhm.') starts before previous end time 257.01
Error: (266.1, 266.4, 'then') starts before previous end time 266.11
Error: (267.5, 267.6, 'we') starts before previous end time 267.51
Error: (268.7, 269.2, 'TV,') starts before previous end time 268.71
Error: (279.4, 279.8, 'on') starts before previous end time 279.40999999999997
Error: (282.5, 282.9, 'window') starts before previous end time 282.51
Error: (285.2, 285.4, 'like') starts before previous end time 285.21
Error: (287.1, 287.2, 'like') starts before previous end time 287.11
Error: (287.2, 287.5, 'and') starts before previous end time 287.21
Error: (288.0, 288.8, 'on') starts before previous end time 288.01
Error: (297.2, 297.5, 'underneath') starts before previous end time 297.21
Error: (305.2, 305.4, 'slide') starts before previous end time 305.21
Error: (305.4, 305.8, 'underneath') starts before previous end time 305.40999999999997
Error: (307.5, 307.8, 'wanted') starts before previous end time 307.51
Error: (310.7, 311.1, 'TV.') starts before previous end time 310.71
Error: (319.4, 319.7, 'mirror') starts before previous end time 319.40999999999997
Error: (328.0, 328.6, 'uh,') starts before previous end time 328.01
Error: (337.4, 337.7, 'switch') starts before previous end time 337.40999999999997
Error: (341.9, 342.0, 'that.') starts before previous end time 341.90999999999997
Error: (349.0, 349.6, 'throw') starts before previous end time 349.01
Error: (355.5, 355.6, 'like') starts before previous end time 355.51
Error: (355.6, 356.1, 'Yeah.') starts before previous end time 355.61
Error: (364.0, 364.2, 'place') starts before previous end time 364.01
Error: (364.5, 364.8, 'you') starts before previous end time 364.51
Error: (364.8, 365.0, 'put') starts before previous end time 364.81
Error: (367.0, 367.5, 'bureau') starts before previous end time 367.01
Error: (372.7, 372.8, 'of') starts before previous end time 372.71
Error: (374.5, 374.51, 'need') starts before previous end time 374.51
Error: (374.5, 374.6, 'to') starts before previous end time 374.52
Error: (378.7, 379.2, 'behind.') starts before previous end time 378.71
Error: (380.9, 381.0, 'few') starts before previous end time 380.90999999999997
Error: (391.7, 391.9, 'the,') starts before previous end time 391.71
Error: (400.9, 401.3, 'recycle') starts before previous end time 400.90999999999997
/Users/joregan/Playing/hsi_google/hsi_5_0718_211_001_inter.json
Error: (1.9, 2.4, 'maybe') starts before previous end time 1.91
Error: (9.4, 10.2, 'like') starts before previous end time 9.41
Error: (13.1, 13.3, "It's") starts before previous end time 13.11
Error: (13.3, 13.4, 'right.') starts before previous end time 13.31
Error: (18.3, 18.6, 'ahead') starts before previous end time 18.310000000000002
Error: (27.9, 28.0, 'good') starts before previous end time 27.91
Error: (44.6, 45.1, 'were') starts before previous end time 44.61
Error: (45.3, 45.5, 'the') starts before previous end time 45.309999999999995
Error: (57.6, 57.9, 'now') starts before previous end time 57.61
/Users/joregan/Playing/hsi_google/hsi_6_0718_210_003_inter.json
Error: (4.1, 4.2, 'also') starts before previous end time 4.109999999999999
Error: (11.3, 11.4, 'good.') starts before previous end time 11.31
/Users/joregan/Playing/hsi_google/hsi_4_0717_227_002_inter.json
Error: (3.0, 3.2, 'this') starts before previous end time 3.01
Error: (6.2, 6.8, 'Yeah,') starts before previous end time 6.21
Error: (7.2, 7.5, 'maybe') starts before previous end time 7.21
Error: (8.7, 8.9, 'comp,') starts before previous end time 8.709999999999999
Error: (9.2, 9.3, 'know') starts before previous end time 9.209999999999999
Error: (18.3, 19.1, 'it') starts before previous end time 18.310000000000002
Error: (20.8, 21.1, 'some') starts before previous end time 20.810000000000002
Error: (24.6, 24.8, 'But') starts before previous end time 24.610000000000003
Error: (26.9, 27.0, 'do') starts before previous end time 26.91
Error: (28.7, 28.8, 'do') starts before previous end time 28.71
Error: (30.9, 31.2, 'now,') starts before previous end time 30.91
Error: (34.6, 34.9, 'maybe') starts before previous end time 34.61
Error: (35.1, 35.5, 'say') starts before previous end time 35.11
Error: (36.0, 36.6, 'like') starts before previous end time 36.01
Error: (50.1, 50.4, 'I') starts before previous end time 50.11
Error: (50.4, 50.7, 'moved') starts before previous end time 50.41
Error: (55.4, 55.5, 'make') starts before previous end time 55.41
Error: (73.6, 74.2, 'Yes,') starts before previous end time 73.9
Error: (99.1, 99.2, 'give') starts before previous end time 99.11
Error: (118.5, 118.51, 'other.') starts before previous end time 118.51
Error: (118.5, 119.6, 'Yeah.') starts before previous end time 118.52000000000001
Error: (195.7, 195.8, 'be') starts before previous end time 195.70999999999998
Error: (207.0, 207.3, 'moved.') starts before previous end time 207.01
Error: (228.3, 228.8, 'I') starts before previous end time 228.31
Error: (230.0, 230.3, 'back') starts before previous end time 230.01
/Users/joregan/Playing/hsi_google/hsi_4_0716_222_002_main.json
Error: (34.5, 34.8, 'enjoy?') starts before previous end time 34.51
Error: (41.8, 42.0, 'place.') starts before previous end time 41.809999999999995
Error: (45.3, 45.9, 'that') starts before previous end time 45.309999999999995
Error: (46.6, 46.7, 'be') starts before previous end time 46.61
Error: (48.0, 48.01, 'be') starts before previous end time 48.01
Error: (48.0, 48.2, 'over') starts before previous end time 48.019999999999996
Error: (50.1, 51.0, 'sewists') starts before previous end time 50.11
Error: (52.3, 53.2, 'Once') starts before previous end time 52.309999999999995
Error: (53.3, 53.5, 'there.') starts before previous end time 53.309999999999995
Error: (54.5, 54.7, 'there') starts before previous end time 54.51
Error: (68.5, 68.9, 'in') starts before previous end time 68.51
Error: (88.5, 88.8, 'There') starts before previous end time 88.51
Error: (99.8, 100.5, 'why?') starts before previous end time 99.81
Error: (125.5, 125.7, 'playing') starts before previous end time 125.51
Error: (130.5, 130.7, 'front') starts before previous end time 130.51
Error: (150.5, 150.51, 'of') starts before previous end time 150.51
Error: (150.5, 150.9, 'keys') starts before previous end time 150.51999999999998
Error: (165.1, 165.3, 'been') starts before previous end time 165.10999999999999
Error: (169.7, 169.9, 'paper') starts before previous end time 169.70999999999998
Error: (174.4, 174.5, 'get') starts before previous end time 174.41
Error: (181.5, 181.6, 'to') starts before previous end time 181.51
Error: (191.0, 191.4, 'a') starts before previous end time 191.01
Error: (207.8, 208.1, 'before') starts before previous end time 207.81
Error: (211.4, 211.7, 'and') starts before previous end time 211.41
Error: (235.3, 235.5, 'this') starts before previous end time 235.31
Error: (235.5, 235.8, 'a') starts before previous end time 235.51
Error: (256.3, 256.5, 'know,') starts before previous end time 256.31
Error: (257.0, 257.2, 'kitchen.') starts before previous end time 257.01
Error: (261.4, 261.5, 'know.') starts before previous end time 261.40999999999997
Error: (277.6, 277.9, 'read') starts before previous end time 277.61
Error: (279.0, 279.5, 'literature.') starts before previous end time 279.01
Error: (282.1, 282.5, 'had') starts before previous end time 282.11
Error: (282.7, 282.8, 'of') starts before previous end time 282.71
Error: (292.9, 293.2, 'no') starts before previous end time 292.90999999999997
Error: (307.4, 307.8, 'to') starts before previous end time 307.40999999999997
Error: (307.8, 308.0, 'a') starts before previous end time 307.81
Error: (308.0, 308.5, 'club.') starts before previous end time 308.01
Error: (311.2, 311.4, 'that,') starts before previous end time 311.21
Error: (311.7, 312.1, 'it') starts before previous end time 311.71
/Users/joregan/Playing/hsi_google/hsi_1_0515_209_001_main.json
Error: (10.1, 10.2, 'shoes') starts before previous end time 10.11
Error: (24.3, 25.2, 'am') starts before previous end time 24.310000000000002
Error: (25.2, 25.3, 'supposed') starts before previous end time 25.21
Error: (25.3, 25.5, 'start') starts before previous end time 25.310000000000002
Error: (29.2, 29.21, 'you') starts before previous end time 29.21
Error: (29.2, 29.4, 'want') starts before previous end time 29.220000000000002
Error: (33.0, 33.1, 'bit') starts before previous end time 33.01
Error: (40.8, 41.1, 'we') starts before previous end time 40.809999999999995
Error: (45.0, 45.01, 'think') starts before previous end time 45.01
Error: (45.0, 45.01, 'about') starts before previous end time 45.019999999999996
Error: (45.0, 45.2, 'that') starts before previous end time 45.019999999999996
Error: (48.6, 48.7, 'place') starts before previous end time 48.61
Error: (58.4, 58.6, 'discuss') starts before previous end time 58.41
Error: (64.1, 64.5, 'couch') starts before previous end time 64.11
Error: (72.1, 72.6, 'the') starts before previous end time 72.11
Error: (77.8, 77.9, 'bit') starts before previous end time 77.81
Error: (85.1, 85.4, 'have') starts before previous end time 85.11
Error: (89.3, 89.4, 'have') starts before previous end time 89.31
Error: (110.8, 111.3, 'uh') starts before previous end time 110.81
Error: (114.1, 114.4, 'that') starts before previous end time 114.11
Error: (121.9, 122.2, 'you') starts before previous end time 121.91000000000001
Error: (122.2, 122.4, 'the') starts before previous end time 122.21000000000001
Error: (133.4, 133.5, 'that') starts before previous end time 133.41
Error: (134.9, 135.2, 'glass') starts before previous end time 134.91
Error: (138.7, 138.8, 'say') starts before previous end time 138.70999999999998
Error: (142.9, 143.3, 'too') starts before previous end time 142.91
Error: (143.3, 143.7, 'sunlight') starts before previous end time 143.31
Error: (144.3, 145.0, 'the') starts before previous end time 144.41
Error: (155.2, 155.3, 'think') starts before previous end time 155.20999999999998
Error: (156.8, 157.1, 'corner') starts before previous end time 156.81
Error: (157.4, 157.5, 'so') starts before previous end time 157.41
Error: (160.1, 160.4, 'we') starts before previous end time 160.10999999999999
Error: (160.4, 160.9, 'put') starts before previous end time 160.41
Error: (161.3, 161.5, 'middle') starts before previous end time 161.31
Error: (170.0, 170.1, 'in') starts before previous end time 170.01
Error: (170.1, 170.4, 'table') starts before previous end time 170.10999999999999
Error: (171.0, 171.5, 'recycle') starts before previous end time 171.01
Error: (177.0, 177.3, "you're") starts before previous end time 177.01
Error: (184.7, 185.0, 'go') starts before previous end time 184.70999999999998
Error: (197.8, 198.1, 'do') starts before previous end time 197.81
Error: (198.1, 198.4, 'now') starts before previous end time 198.10999999999999
Error: (201.5, 202.1, 'not') starts before previous end time 201.51
Error: (203.2, 203.7, 'in') starts before previous end time 203.20999999999998
Error: (208.7, 209.2, 'lamp') starts before previous end time 208.70999999999998
Error: (216.1, 216.5, 'corner') starts before previous end time 216.10999999999999
Error: (225.3, 225.5, 'good') starts before previous end time 225.4
Error: (232.7, 232.9, 'closer') starts before previous end time 232.70999999999998
Error: (238.3, 238.31, 'you') starts before previous end time 238.31
Error: (238.3, 238.4, 'think') starts before previous end time 238.32
Error: (238.5, 240.0, "we're") starts before previous end time 238.51
Error: (240.0, 240.01, 'to') starts before previous end time 240.01
Error: (240.0, 240.4, 'do') starts before previous end time 240.01999999999998
Error: (240.4, 241.3, 'well') starts before previous end time 240.41
Error: (254.5, 254.8, 'bit') starts before previous end time 254.51
Error: (258.8, 258.81, 'say') starts before previous end time 258.81
Error: (258.8, 259.9, 'yeah') starts before previous end time 258.82
Error: (262.0, 262.01, 'be') starts before previous end time 262.01
Error: (262.0, 262.4, 'nice') starts before previous end time 262.02
Error: (263.7, 264.0, 'TV') starts before previous end time 263.71
Error: (265.5, 265.7, 'bit') starts before previous end time 265.51
Error: (275.1, 275.3, 'tricky') starts before previous end time 275.11
Error: (278.6, 279.0, 'on') starts before previous end time 278.61
Error: (280.3, 280.4, 'of') starts before previous end time 280.31
Error: (280.4, 280.7, 'TV') starts before previous end time 280.40999999999997
---------------------------------------------------------------------------
TextgridStateError                        Traceback (most recent call last)
Cell In [72], line 14
     12 print(filename)
     13 outfile = outpath / f"{filename.stem}.TextGrid"
---> 14 convert_to_textgrid(str(filename), outfile)

Cell In [71], line 32, in convert_to_textgrid(filename, outfile)
     30 tg.addTier(res_tier)
     31 if write_words:
---> 32     word_tier = textgrid.IntervalTier('google_words', b, b_start, b_end)
     33     tg.addTier(word_tier)
     34 tg.save(outfile, format="long_textgrid", includeBlankSpaces=False)

File ~/opt/anaconda3/envs/hf/lib/python3.9/site-packages/praatio/data_classes/interval_tier.py:84, in IntervalTier.__init__(self, name, entries, minT, maxT)
     79 calculatedMinT, calculatedMaxT = _calculateMinAndMaxTime(entries, minT, maxT)
     81 super(IntervalTier, self).__init__(
     82     name, entries, calculatedMinT, calculatedMaxT
     83 )
---> 84 self._validate()

File ~/opt/anaconda3/envs/hf/lib/python3.9/site-packages/praatio/data_classes/interval_tier.py:90, in IntervalTier._validate(self)
     88 for entry in self.entries:
     89     if entry.start >= entry.end:
---> 90         raise errors.TextgridStateError(
     91             f"The start time of an interval ({entry.start}) "
     92             f"cannot occur after its end time ({entry.end})"
     93         )
     95 for entry, nextEntry in zip(self.entries[0::], self.entries[1::]):
     96     if entry.end > nextEntry.start:

TextgridStateError: The start time of an interval (45.019999999999996) cannot occur after its end time (45.019999999999996)