-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlongmemeval_results.json
More file actions
8515 lines (8515 loc) · 354 KB
/
longmemeval_results.json
File metadata and controls
8515 lines (8515 loc) · 354 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"config": {
"max_entries": 500,
"gen_tokens": 40,
"model": "gpt2",
"ams_version": "v3.12"
},
"results": [
{
"question_id": "gpt4_2655b836",
"question_type": "temporal-reasoning",
"question": "What was the first issue I had with my new car after its first service?",
"answer": "GPS system not functioning correctly",
"hypothesis": "car and issue of the new, a- it was with what's all this other\n (all to \" they have you just do I'm some more will we are in the world, where a",
"is_abstention": false,
"n_sessions": 3,
"n_written": 18,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 4,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 18
},
{
"question_id": "gpt4_2487a7cb",
"question_type": "temporal-reasoning",
"question": "Which event did I attend first, the 'Effective Time Management' workshop or the 'Data Analysis using Python' webinar?",
"answer": "'Data Analysis using Python' webinar",
"hypothesis": "Python data the web all this event onin 'com, to just in any of a Time I that and g/ last's at my first time for when you the next? all this new or",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.25000000000000006,
"has_answer": true,
"n_answer_kw_in_bias": 3,
"n_answer_kw_total": 5,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_76048e76",
"question_type": "temporal-reasoning",
"question": "Which vehicle did I take care of first in February, the bike or the car?",
"answer": "bike",
"hypothesis": "car a bike the other we he and, in which all of an- this is for that I'm be to do you would have last if it are so a thing the other person. on,",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.25,
"has_answer": true,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 1,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_2312f94c",
"question_type": "temporal-reasoning",
"question": "Which device did I got first, the Samsung Galaxy S22 or the Dell XPS 13?",
"answer": "Samsung Galaxy S22",
"hypothesis": "Samsung Galaxy S3 the world and, or a/ Dell is who with The United. I have we on We get my X are that so as it which how do you the S and also,",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.3333333333333333,
"has_answer": true,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 3,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "0bb5a684",
"question_type": "temporal-reasoning",
"question": "How many days before the team meeting I was preparing for did I attend the workshop on 'Effective Communication in the Workplace'?",
"answer": "7 days. 8 days (including the last day) is also acceptable.",
"hypothesis": "team meeting the workshop Communication\nTheplace I do you's is they and a And The Future of with at 5 -: That all that had, in he \u2013 the \" include",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 5,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "08f4fc43",
"question_type": "temporal-reasoning",
"question": "How many days had passed between the Sunday mass at St. Mary's Church and the Ash Wednesday service at the cathedral?",
"answer": "30 days. 31 days (including the last day) is also acceptable.",
"hypothesis": "Wednesday service and Ash mass the cathedral Sunday's for a new year of Church all time at last day. with Mary this- today many years to one, Mass in its past and the first or more",
"is_abstention": false,
"n_sessions": 2,
"n_written": 11,
"kw_f1": 0.14814814814814817,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 7,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 11
},
{
"question_id": "2c63a862",
"question_type": "temporal-reasoning",
"question": "How many days did it take for me to find a house I loved after starting to work with Rachel?",
"answer": "14 days. 15 days (including the last day) is also acceptable.",
"hypothesis": "Rachel house the and true of do I love., all- at a good work now that in get up well be this or have some just you to begin without the way and:",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 7,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_385a5000",
"question_type": "temporal-reasoning",
"question": "Which seeds were started first, the tomatoes or the marigolds?",
"answer": "Tomatoes",
"hypothesis": "marce seed the seeds or, and to. a of last say he in any man's his name is just now all on do you more number one was better for the first or, when we",
"is_abstention": false,
"n_sessions": 2,
"n_written": 10,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 1,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 10
},
{
"question_id": "2a1811e2",
"question_type": "temporal-reasoning",
"question": "How many days had passed between the Hindu festival of Holi and the Sunday mass at St. Mary's Church?",
"answer": "21 days. 22 days (including the last day) is also acceptable.",
"hypothesis": "Church Sunday the Mary's mass of Holm this, that last and. I had a Mass on Friday said next one more it all in public today many just past the first to new of \" now",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.08,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 7,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "bbf86515",
"question_type": "temporal-reasoning",
"question": "How many days before the 'Rack Fest' did I participate in the 'Turbocharged Tuesdays' event?",
"answer": "4 days.",
"hypothesis": "event Tuesdays the next-Turin' to do it, is a day \"\n (b are that other days I just all of be in this dia. the next- we're not",
"is_abstention": false,
"n_sessions": 2,
"n_written": 11,
"kw_f1": 0.19999999999999998,
"has_answer": true,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 1,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 11
},
{
"question_id": "gpt4_5dcc0aab",
"question_type": "temporal-reasoning",
"question": "Which pair of shoes did I clean last month?",
"answer": "white Adidas sneakers",
"hypothesis": "shoes pair and month why to not.\n\n\n, last week's the other from a I do we was while weeks it will all of at something is you these and in us this to an year",
"is_abstention": false,
"n_sessions": 5,
"n_written": 29,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 3,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 16
},
{
"question_id": "gpt4_0b2f1d21",
"question_type": "temporal-reasoning",
"question": "Which event happened first, the purchase of the coffee maker or the malfunction of the stand mixer?",
"answer": "The malfunction of the stand mixer",
"hypothesis": "stand mixer the coffee maker of me and in all or we do a. to put f, let us not through don't I for you - 1\n \" n the other- what? now that",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.28571428571428575,
"has_answer": true,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 3,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 11
},
{
"question_id": "f0853d11",
"question_type": "temporal-reasoning",
"question": "How many days had passed between the 'Walk for Hunger' event and the 'Coastal Cleanup' event?",
"answer": "14 days. 8 days (including the last day) is also acceptable.",
"hypothesis": "event events the Clean it, if you have had an Hunger that a walk all other\n. The-th we of world and was as some to be all number the last or were in more have",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.11764705882352942,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 6,
"answer_in_retrieved": false,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_6ed717ea",
"question_type": "temporal-reasoning",
"question": "Which item did I purchase first, the dog bed for Max or the training pads for Luna?",
"answer": "Training pads for Luna",
"hypothesis": "Max dog the other a or more, for you have not this is in which has to all of these at home do me where no- here are so an animal the other a or I want,",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 3,
"n_answer_kw_total": 3,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_70e84552",
"question_type": "temporal-reasoning",
"question": "Which task did I complete first, fixing the fence or trimming the goats' hooves?",
"answer": "Fixing the fence",
"hypothesis": "trim farm the house a",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "a3838d2b",
"question_type": "temporal-reasoning",
"question": "How many charity events did I participate in before the 'Run for the Cure' event?",
"answer": "4",
"hypothesis": "charity events the event to all",
"is_abstention": false,
"n_sessions": 6,
"n_written": 34,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 0,
"answer_in_retrieved": false,
"content_bias_nonzero": true,
"n_memories_retrieved": 16
},
{
"question_id": "gpt4_93159ced",
"question_type": "temporal-reasoning",
"question": "How long have I been working before I started my current job at NovaTech?",
"answer": "4 years and 9 months",
"hypothesis": "NovaTech the other a and was I have all of any is an- we were in it's this that has been you are he had. for me, my the other a one and what I",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_2d58bcd6",
"question_type": "temporal-reasoning",
"question": "Which book did I finish reading first, 'The Hate U Give' or 'The Nightingale'?",
"answer": "'The Hate U Give'",
"hypothesis": "book reading the booksing The fourth- I read ' S don't do not for me and. \" to H E U or just, non of first place that the second?\n ( W-",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_65aabe59",
"question_type": "temporal-reasoning",
"question": "Which device did I set up first, the smart thermostat or the mesh network system?",
"answer": "Smart thermostat",
"hypothesis": "set system and smart thermost network computer the way to for a company is it all of this just not by we do you \", or your said that up really and in both should I- the",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.1818181818181818,
"has_answer": true,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "982b5123",
"question_type": "temporal-reasoning",
"question": "How many months ago did I book the Airbnb in San Francisco?",
"answer": "Five months ago",
"hypothesis": "San Francisco a book months in the past this that he have an time and to many more we all of now at which one you on I can be there will no a new year in the last this",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.1111111111111111,
"has_answer": true,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 3,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "b9cfe692",
"question_type": "temporal-reasoning",
"question": "How long did I take to finish 'The Seven Husbands of Evelyn Hugo' and 'The Nightingale' combined?",
"answer": "5.5 weeks",
"hypothesis": "Seven Night anding Husband theale Evelyn, Hugo at finish 'all I'm in this is that's only The rest of my new L. with all and aand you are the last",
"is_abstention": false,
"n_sessions": 3,
"n_written": 18,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 1,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 18
},
{
"question_id": "gpt4_4edbafa2",
"question_type": "temporal-reasoning",
"question": "What was the date on which I attended the first BBQ event in June?",
"answer": "June 3rd",
"hypothesis": "BBQ June and the different I me,\n\n\n. for it is a C of what else about how to all this time they are in by something that he way and the different from other-",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.2,
"has_answer": true,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "c8090214",
"question_type": "temporal-reasoning",
"question": "How many days before I bought the iPhone 13 Pro did I attend the Holiday Market?",
"answer": "7 days. 8 days (including the last day) is also acceptable.",
"hypothesis": "Market Holiday the phone I have an-\n\n\n. for other a lot that they are all others: or and can be do we, something else in so now We the right this is from us",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 5,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_483dd43c",
"question_type": "temporal-reasoning",
"question": "Which show did I start watching first, 'The Crown' or 'Game of Thrones'?",
"answer": "'Game of Thrones'",
"hypothesis": "watching shows on watch the other, or a season\n The one in this show and your new ' is do it all was out's. like more of first ( most on the last, then a",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "e4e14d04",
"question_type": "temporal-reasoning",
"question": "How long had I been a member of 'Book Lovers Unite' when I attended the meetup?",
"answer": "Two weeks",
"hypothesis": "ite book thevers in a members and, this long have I had last seen with G we about all my team will be-",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "c9f37c46",
"question_type": "temporal-reasoning",
"question": "How long had I been watching stand-up comedy specials regularly when I attended the open mic night at the local comedy club?",
"answer": "2 months",
"hypothesis": "comedy club the local open a night stand I don't to \"The other-man he and. The last in those two good",
"is_abstention": false,
"n_sessions": 2,
"n_written": 11,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 1,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 11
},
{
"question_id": "gpt4_2c50253f",
"question_type": "temporal-reasoning",
"question": "What time do I wake up on Tuesdays and Thursdays?",
"answer": "6:45 AM",
"hypothesis": "Tuesdays on Thurs this the day in a morning, when we have I do up and.\n- first to just of what's or get that last come from time on this is the all in",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "dcfa8644",
"question_type": "temporal-reasoning",
"question": "How many days had passed since I bought my Adidas running shoes when I realized one of the shoelaces on my old Converse sneakers had broken?",
"answer": "14 days. 15 days (including the last day) is also acceptable.",
"hypothesis": "shoes sneakers the broken to in from a: shoe I realized\n. that running for my outside, \" we again now if left is original last move and but how the way earlier by this no of",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.09090909090909091,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 7,
"answer_in_retrieved": false,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_b4a80587",
"question_type": "temporal-reasoning",
"question": "Which event happened first, the road trip to the coast or the arrival of the new prime lens?",
"answer": "The arrival of the new prime lens",
"hypothesis": "lens trip the coast a year- to do this or be some other road and F, world any more no number of all he best that go here. we get the rest a one-all to",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.10526315789473685,
"has_answer": false,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 4,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_9a159967",
"question_type": "temporal-reasoning",
"question": "Which airline did I fly with the most in March and April?",
"answer": "United Airlines",
"hypothesis": "March flying the flight Airlines, I and. that's it all in a few each), but which\n 1 United: no (all of U are for American as the last one an, and.",
"is_abstention": false,
"n_sessions": 3,
"n_written": 16,
"kw_f1": 0.33333333333333337,
"has_answer": true,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 16
},
{
"question_id": "cc6d1ec1",
"question_type": "temporal-reasoning",
"question": "How long had I been bird watching when I attended the bird watching workshop?",
"answer": "Two months",
"hypothesis": "bird birds and watching the world, I have all of which are in a \"I then though it we-H they as do you. It's\n\" or and to the but, one that",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_8c8961ae",
"question_type": "temporal-reasoning",
"question": "Which trip did I take first, the one to Europe with family or the solo trip to Thailand?",
"answer": "The solo trip to Thailand",
"hypothesis": "solo trip of Europe family that travel the traveling or a go, so do in my party and like this country you were to live I have first get on place show of all with people that will the",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.21052631578947367,
"has_answer": true,
"n_answer_kw_in_bias": 3,
"n_answer_kw_total": 3,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_d9af6064",
"question_type": "temporal-reasoning",
"question": "Which device did I set up first, the smart thermostat or the new router?",
"answer": "new router",
"hypothesis": "set smart about the network or are a new and",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.3333333333333333,
"has_answer": true,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_7de946e7",
"question_type": "temporal-reasoning",
"question": "Which health issue did I deal with first, the persistent cough or the skin tag removal?",
"answer": "Persistent cough",
"hypothesis": "health skin the tag in a long and, last name an ( or on top of cough all issues from our to add me now you have state do I think it the other? a.\n,",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.125,
"has_answer": true,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "d01c6aa8",
"question_type": "temporal-reasoning",
"question": "How old was I when I moved to the United States?",
"answer": "27",
"hypothesis": "United States and past the I, that. to be with you for which of what is in this way we was a new\n (I said The other than by it's the world I think that",
"is_abstention": false,
"n_sessions": 2,
"n_written": 11,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 1,
"answer_in_retrieved": false,
"content_bias_nonzero": true,
"n_memories_retrieved": 11
},
{
"question_id": "993da5e2",
"question_type": "temporal-reasoning",
"question": "How long had I been using the new area rug when I rearranged my living room furniture?",
"answer": "One week. Answers ranging from 7 days to 10 days are also acceptable.",
"hypothesis": "room living the area furniture I will and in all of other my he was, have a rearranged do you can we me just \" it this.\n\n\n ( the new? I had for his",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 7,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "a3045048",
"question_type": "temporal-reasoning",
"question": "How many days before my best friend's birthday party did I order her gift?",
"answer": "7 days. 8 days (including the last day) is also acceptable.",
"hypothesis": "birthday friend and best to this party.\n \" the state, jul-m back that a world you have some other so are all of people do me on and in my last for this is",
"is_abstention": false,
"n_sessions": 2,
"n_written": 11,
"kw_f1": 0.12500000000000003,
"has_answer": true,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 5,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 11
},
{
"question_id": "gpt4_d31cdae3",
"question_type": "temporal-reasoning",
"question": "Which trip did the narrator take first, the solo trip to Europe or the family road trip across the American Southwest?",
"answer": "The family road trip across the American Southwest",
"hypothesis": "trip across the family road to visit a time in travel solo that they do what are allother from go or more about-of on any have it and he's the world of home, take a",
"is_abstention": false,
"n_sessions": 2,
"n_written": 11,
"kw_f1": 0.4,
"has_answer": true,
"n_answer_kw_in_bias": 6,
"n_answer_kw_total": 6,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 11
},
{
"question_id": "gpt4_cd90e484",
"question_type": "temporal-reasoning",
"question": "How long did I use my new binoculars before I saw the American goldfinches returning to the area?",
"answer": "Two weeks",
"hypothesis": "American gold the area of our last timef, I do in my returning we could a long to you will that other if all or any something else and what this the first week some last me of",
"is_abstention": false,
"n_sessions": 2,
"n_written": 11,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 11
},
{
"question_id": "gpt4_88806d6e",
"question_type": "temporal-reasoning",
"question": "Who did I meet first, Mark and Sarah or Tom?",
"answer": "Tom",
"hypothesis": "Sarah Mark of the other. and, I met The rest that go to a visit not do first meet any one or be as they are we would you so all of the other people in this and",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 1,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_4cd9eba1",
"question_type": "temporal-reasoning",
"question": "How many weeks have I been accepted into the exchange program when I started attending the pre-departure orientation sessions?",
"answer": "one week",
"hypothesis": "preart the sessions attending all I andure this have a do you, \" for years are that with The about has some on any. is would be (prod the end of all over and",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_93f6379c",
"question_type": "temporal-reasoning",
"question": "Which group did I join first, 'Page Turners' or 'Marketing Professionals'?",
"answer": "Page Turners",
"hypothesis": "group joined theals inMarky and, or\n I get me. that.\" G having what this was these like: as on a his- it now to the \"My name in which,",
"is_abstention": false,
"n_sessions": 3,
"n_written": 18,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 18
},
{
"question_id": "b29f3365",
"question_type": "temporal-reasoning",
"question": "How long had I been taking guitar lessons when I bought the new guitar amp?",
"answer": "Four weeks",
"hypothesis": "guitar music the lessons we\n, I had to be learning from a long bought my of all in your you have not more going about it's three or (a the most this he was doing,",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_2f56ae70",
"question_type": "temporal-reasoning",
"question": "Which streaming service did I start using most recently?",
"answer": "Disney+",
"hypothesis": "start time and the great-.\n \" do all good will be in which are a few that they don't one like this is no end of some people can we have the last using any and",
"is_abstention": false,
"n_sessions": 3,
"n_written": 18,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 1,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 18
},
{
"question_id": "6613b389",
"question_type": "temporal-reasoning",
"question": "How many months before my anniversary did Rachel get engaged?",
"answer": "2",
"hypothesis": "Rachel's of the beautiful and/\n. I did what it, all a couple he is do we or that new about have no more months are you as 2 years of the last year and",
"is_abstention": false,
"n_sessions": 3,
"n_written": 18,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 0,
"answer_in_retrieved": false,
"content_bias_nonzero": true,
"n_memories_retrieved": 18
},
{
"question_id": "gpt4_78cf46a3",
"question_type": "temporal-reasoning",
"question": "Which event happened first, the narrator losing their phone charger or the narrator receiving their new phone case?",
"answer": "Receiving the new phone case",
"hypothesis": "phone the case and feel to for which it that we, so us. in this is a-d some other's out new or he d get their report the last and follow them all from any",
"is_abstention": false,
"n_sessions": 2,
"n_written": 10,
"kw_f1": 0.375,
"has_answer": true,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 4,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 10
},
{
"question_id": "gpt4_0a05b494",
"question_type": "temporal-reasoning",
"question": "Who did I meet first, the woman selling jam at the farmer's market or the tourist from Australia?",
"answer": "the woman selling jam at the farmer's market",
"hypothesis": "jam met the market woman\n (1 a city of in people on I did this do we were our new to us for them at all, they are out part the world with these things that's",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.33333333333333337,
"has_answer": true,
"n_answer_kw_in_bias": 4,
"n_answer_kw_total": 5,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_1a1dc16d",
"question_type": "temporal-reasoning",
"question": "Which event happened first, the meeting with Rachel or the pride parade?",
"answer": "The meeting with Rachel",
"hypothesis": "pride parade of the current or to a second in this was we and, with all other one. by another couple- as his/\n\u2014 you are those things that the two or any of a",
"is_abstention": false,
"n_sessions": 2,
"n_written": 10,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 10
},
{
"question_id": "gpt4_2f584639",
"question_type": "temporal-reasoning",
"question": "Which gift did I buy first, the necklace for my sister or the photo album for my mom?",
"answer": "the photo album for my mom",
"hypothesis": "mom gift the sister for us photo album my or I've did we do they all of our have a group that be any two, in photos you and has this the last with your what for us",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.42857142857142855,
"has_answer": true,
"n_answer_kw_in_bias": 3,
"n_answer_kw_total": 3,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_213fd887",
"question_type": "temporal-reasoning",
"question": "Which event did I participate in first, the volleyball league or the charity 5K run to raise money for a local children's hospital?",
"answer": "volleyball league",
"hypothesis": "local run the volleyball charity, children do you get a f one find league world",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.33333333333333337,
"has_answer": true,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_5438fa52",
"question_type": "temporal-reasoning",
"question": "Which event happened first, my attendance at a cultural festival or the start of my Spanish classes?",
"answer": "Spanish classes",
"hypothesis": "cultural Spanish or the classes for me, a I don/ \"The other more that some of this school from all last name one any and who both in so you or the final say ' on a",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.2666666666666667,
"has_answer": true,
"n_answer_kw_in_bias": 2,
"n_answer_kw_total": 2,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_c27434e8",
"question_type": "temporal-reasoning",
"question": "Which project did I start first, the Ferrari model or the Japanese Zero fighter plane model?",
"answer": "Japanese Zero fighter plane model",
"hypothesis": "model plane the fighter Japanese, in a first Zero.\n\u2026 The F- this or that and with some one of an early on all we have to you will be the other, in a past",
"is_abstention": false,
"n_sessions": 2,
"n_written": 11,
"kw_f1": 0.6666666666666666,
"has_answer": true,
"n_answer_kw_in_bias": 5,
"n_answer_kw_total": 5,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 11
},
{
"question_id": "gpt4_fe651585",
"question_type": "temporal-reasoning",
"question": "Who became a parent first, Rachel or Alex?",
"answer": "Alex",
"hypothesis": "Alexa Rachel on the last name a mother in an (one he or his/ and\n \" it's F- if we can you, for all of some? any other last the first a",
"is_abstention": false,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": true,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 1,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "8c18457d",
"question_type": "temporal-reasoning",
"question": "How many days had passed between the day I bought a gift for my brother's graduation ceremony and the day I bought a birthday gift for my best friend?",
"answer": "7 days. 8 days (including the last day) is also acceptable.",
"hypothesis": "gift friend and best to the next a birthday, this one you for all- by other have been is more we has said much at my us again. our let me and actual the most of a",
"is_abstention": false,
"n_sessions": 2,
"n_written": 10,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 5,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 10
},
{
"question_id": "gpt4_70e84552_abs",
"question_type": "temporal-reasoning",
"question": "Which task did I complete first, fixing the fence or purchasing three cows from Peter?",
"answer": "The information provided is not enough. You mentioned fixing the fence but did not mention purchasing cows from Peter.",
"hypothesis": "thinking three and farm house that the cow, do you from now all of cows with days done\nThe next it's named him on a school both. A kinda to show and the have an",
"is_abstention": true,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.08,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 10,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_93159ced_abs",
"question_type": "temporal-reasoning",
"question": "How long have I been working before I started my current job at Google?",
"answer": "The information provided is not enough. From the information provided, You haven't started working at Google yet.",
"hypothesis": "years help and digital tool to definitely currently I had the we it's\n \", a in my way by an long was- is that were as. his/ and of this just to be for",
"is_abstention": true,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.0,
"has_answer": false,
"n_answer_kw_in_bias": 0,
"n_answer_kw_total": 7,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "982b5123_abs",
"question_type": "temporal-reasoning",
"question": "When did I book the Airbnb in Sacramento?",
"answer": "The information provided is not enough. You only mentioned booking Airbnb in San Francisco.",
"hypothesis": "Airbnb San Francisco and system of book, the place. The host about all a park in our rus at\n-c just with that this are do we were I'm and not to us the",
"is_abstention": true,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.33333333333333326,
"has_answer": true,
"n_answer_kw_in_bias": 3,
"n_answer_kw_total": 8,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "c8090214_abs",
"question_type": "temporal-reasoning",
"question": "How many days before I bought my iPad did I attend the Holiday Market?",
"answer": "The information provided is not enough. You mentioned getting the iPhone 13 Pro and attending the market, but you did not mention buying an iPad.",
"hypothesis": "Market Holiday I the week a 3.\n\n\n, as my for all this did we do you may be have had's more of our would like in are on I am the other a third-",
"is_abstention": true,
"n_sessions": 2,
"n_written": 12,
"kw_f1": 0.09523809523809525,
"has_answer": false,
"n_answer_kw_in_bias": 1,
"n_answer_kw_total": 13,
"answer_in_retrieved": true,
"content_bias_nonzero": true,
"n_memories_retrieved": 12
},
{
"question_id": "gpt4_c27434e8_abs",
"question_type": "temporal-reasoning",
"question": "Which project did I start first, the Ferrari model or the Porsche 991 Turbo S model?",
"answer": "The information provided is not enough. You did not mention starting the Porsche 991 Turbo S model.",
"hypothesis": "Ferrari model the world a and you, or do all did that S-in some of F1 to people who is in past time will are (9 be it the other a and f, I",