-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqmd_eval_results.json
More file actions
1599 lines (1599 loc) · 50.2 KB
/
qmd_eval_results.json
File metadata and controls
1599 lines (1599 loc) · 50.2 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
{
"summary": {
"total_questions": 100,
"recall_any_rate": 0.0,
"recall_all_rate": 0.0,
"avg_search_time_ms": 0.92,
"by_type": {
"temporal-reasoning": {
"total": 54,
"recall_any": 0,
"recall_all": 0
},
"multi-session": {
"total": 46,
"recall_any": 0,
"recall_all": 0
}
},
"elapsed_seconds": 0.5637898445129395
},
"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?",
"ground_truth": "GPS system not functioning correctly",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_4be1b6b4_2",
"answer_4be1b6b4_3",
"answer_4be1b6b4_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 4,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "'Data Analysis using Python' webinar",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_1c6b85ea_1",
"answer_1c6b85ea_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 8,
"mode_used": "unknown"
},
{
"question_id": "gpt4_76048e76",
"question_type": "temporal-reasoning",
"question": "Which vehicle did I take care of first in February, the bike or the car?",
"ground_truth": "bike",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_b535969f_2",
"answer_b535969f_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 6,
"mode_used": "unknown"
},
{
"question_id": "gpt4_2312f94c",
"question_type": "temporal-reasoning",
"question": "Which device did I got first, the Samsung Galaxy S22 or the Dell XPS 13?",
"ground_truth": "Samsung Galaxy S22",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_5328c3c2_1",
"answer_5328c3c2_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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'?",
"ground_truth": "7 days. 8 days (including the last day) is also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_e936197f_1",
"answer_e936197f_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "30 days. 31 days (including the last day) is also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_6ea1541e_2",
"answer_6ea1541e_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "14 days. 15 days (including the last day) is also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_d39b7977_1",
"answer_d39b7977_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_385a5000",
"question_type": "temporal-reasoning",
"question": "Which seeds were started first, the tomatoes or the marigolds?",
"ground_truth": "Tomatoes",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_7a4a93f1_2",
"answer_7a4a93f1_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "21 days. 22 days (including the last day) is also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_1cc3cd0c_2",
"answer_1cc3cd0c_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "bbf86515",
"question_type": "temporal-reasoning",
"question": "How many days before the 'Rack Fest' did I participate in the 'Turbocharged Tuesdays' event?",
"ground_truth": "4 days.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_b3763b6b_1",
"answer_b3763b6b_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_5dcc0aab",
"question_type": "temporal-reasoning",
"question": "Which pair of shoes did I clean last month?",
"ground_truth": "white Adidas sneakers",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_099c1b6c_3",
"answer_099c1b6c_1",
"answer_099c1b6c_2",
"answer_099c1b6c_4",
"answer_099c1b6c_5"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "The malfunction of the stand mixer",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_c4e5d969_1",
"answer_c4e5d969_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"question_id": "f0853d11",
"question_type": "temporal-reasoning",
"question": "How many days had passed between the 'Walk for Hunger' event and the 'Coastal Cleanup' event?",
"ground_truth": "14 days. 8 days (including the last day) is also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_932ea3bf_2",
"answer_932ea3bf_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "Training pads for Luna",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_d50a8a33_2",
"answer_d50a8a33_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_70e84552",
"question_type": "temporal-reasoning",
"question": "Which task did I complete first, fixing the fence or trimming the goats' hooves?",
"ground_truth": "Fixing the fence",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_b3070ec4_1",
"answer_b3070ec4_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"question_id": "a3838d2b",
"question_type": "temporal-reasoning",
"question": "How many charity events did I participate in before the 'Run for the Cure' event?",
"ground_truth": "4",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_4ffa04a2_1",
"answer_4ffa04a2_6",
"answer_4ffa04a2_5",
"answer_4ffa04a2_4",
"answer_4ffa04a2_2",
"answer_4ffa04a2_3"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"question_id": "gpt4_93159ced",
"question_type": "temporal-reasoning",
"question": "How long have I been working before I started my current job at NovaTech?",
"ground_truth": "4 years and 9 months",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_e5131a1b_1",
"answer_e5131a1b_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"question_id": "gpt4_2d58bcd6",
"question_type": "temporal-reasoning",
"question": "Which book did I finish reading first, 'The Hate U Give' or 'The Nightingale'?",
"ground_truth": "'The Hate U Give'",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_3e11e0ae_2",
"answer_3e11e0ae_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_65aabe59",
"question_type": "temporal-reasoning",
"question": "Which device did I set up first, the smart thermostat or the mesh network system?",
"ground_truth": "Smart thermostat",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_30dfe889_2",
"answer_30dfe889_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "982b5123",
"question_type": "temporal-reasoning",
"question": "How many months ago did I book the Airbnb in San Francisco?",
"ground_truth": "Five months ago",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_ab603dd5_2",
"answer_ab603dd5_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "5.5 weeks",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_5e3bb940_1",
"answer_5e3bb940_3",
"answer_5e3bb940_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"question_id": "gpt4_4edbafa2",
"question_type": "temporal-reasoning",
"question": "What was the date on which I attended the first BBQ event in June?",
"ground_truth": "June 3rd",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_0a00c163_1",
"answer_0a00c163_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"question_id": "c8090214",
"question_type": "temporal-reasoning",
"question": "How many days before I bought the iPhone 13 Pro did I attend the Holiday Market?",
"ground_truth": "7 days. 8 days (including the last day) is also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_70dc7d08_1",
"answer_70dc7d08_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_483dd43c",
"question_type": "temporal-reasoning",
"question": "Which show did I start watching first, 'The Crown' or 'Game of Thrones'?",
"ground_truth": "'Game of Thrones'",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_fb793c87_2",
"answer_fb793c87_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "e4e14d04",
"question_type": "temporal-reasoning",
"question": "How long had I been a member of 'Book Lovers Unite' when I attended the meetup?",
"ground_truth": "Two weeks",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_cf425855_2",
"answer_cf425855_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "2 months",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_cdba3d9f_1",
"answer_cdba3d9f_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_2c50253f",
"question_type": "temporal-reasoning",
"question": "What time do I wake up on Tuesdays and Thursdays?",
"ground_truth": "6:45 AM",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_9af4e346_1",
"answer_9af4e346_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "14 days. 15 days (including the last day) is also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_5e3eeb12_1",
"answer_5e3eeb12_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "The arrival of the new prime lens",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_b9d9150e_2",
"answer_b9d9150e_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_9a159967",
"question_type": "temporal-reasoning",
"question": "Which airline did I fly with the most in March and April?",
"ground_truth": "United Airlines",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_8a42fedf_1",
"answer_8a42fedf_3",
"answer_8a42fedf_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "cc6d1ec1",
"question_type": "temporal-reasoning",
"question": "How long had I been bird watching when I attended the bird watching workshop?",
"ground_truth": "Two months",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_be73098b_1",
"answer_be73098b_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "The solo trip to Thailand",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_72d9aa58_2",
"answer_72d9aa58_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_d9af6064",
"question_type": "temporal-reasoning",
"question": "Which device did I set up first, the smart thermostat or the new router?",
"ground_truth": "new router",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_da704e79_1",
"answer_da704e79_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "Persistent cough",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_6a78e959_1",
"answer_6a78e959_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"question_id": "d01c6aa8",
"question_type": "temporal-reasoning",
"question": "How old was I when I moved to the United States?",
"ground_truth": "27",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_991d55e5_1",
"answer_991d55e5_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 2,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "One week. Answers ranging from 7 days to 10 days are also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_54f0d6f9_2",
"answer_54f0d6f9_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"question_id": "a3045048",
"question_type": "temporal-reasoning",
"question": "How many days before my best friend's birthday party did I order her gift?",
"ground_truth": "7 days. 8 days (including the last day) is also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_016f6bd4_1",
"answer_016f6bd4_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "The family road trip across the American Southwest",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_8464304d_1",
"answer_8464304d_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "Two weeks",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_aa930b56_2",
"answer_aa930b56_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 2,
"mode_used": "unknown"
},
{
"question_id": "gpt4_88806d6e",
"question_type": "temporal-reasoning",
"question": "Who did I meet first, Mark and Sarah or Tom?",
"ground_truth": "Tom",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_e60a93ff_2",
"answer_e60a93ff_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "one week",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_5fcca8bc_2",
"answer_5fcca8bc_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_93f6379c",
"question_type": "temporal-reasoning",
"question": "Which group did I join first, 'Page Turners' or 'Marketing Professionals'?",
"ground_truth": "Page Turners",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_544fe66c_2",
"answer_544fe66c_1",
"answer_544fe66c_3"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"question_id": "b29f3365",
"question_type": "temporal-reasoning",
"question": "How long had I been taking guitar lessons when I bought the new guitar amp?",
"ground_truth": "Four weeks",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_436d4309_1",
"answer_436d4309_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_2f56ae70",
"question_type": "temporal-reasoning",
"question": "Which streaming service did I start using most recently?",
"ground_truth": "Disney+",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_7a36e820_2",
"answer_7a36e820_1",
"answer_7a36e820_3"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "6613b389",
"question_type": "temporal-reasoning",
"question": "How many months before my anniversary did Rachel get engaged?",
"ground_truth": "2",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_aaf71ce2_2",
"answer_aaf71ce2_1",
"answer_aaf71ce2_3"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "Receiving the new phone case",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_5a78688d_2",
"answer_5a78688d_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "the woman selling jam at the farmer's market",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_a68db5db_2",
"answer_a68db5db_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_1a1dc16d",
"question_type": "temporal-reasoning",
"question": "Which event happened first, the meeting with Rachel or the pride parade?",
"ground_truth": "The meeting with Rachel",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_faad7d7a_2",
"answer_faad7d7a_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "the photo album for my mom",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_11a8f823_2",
"answer_11a8f823_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 0,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "volleyball league",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_53582e7e_1",
"answer_53582e7e_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "Spanish classes",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_b10f3828_2",
"answer_b10f3828_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "Japanese Zero fighter plane model",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_d8e33f5c_1",
"answer_d8e33f5c_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_fe651585",
"question_type": "temporal-reasoning",
"question": "Who became a parent first, Rachel or Alex?",
"ground_truth": "Alex",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_65600ff6_1",
"answer_65600ff6_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"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?",
"ground_truth": "7 days. 8 days (including the last day) is also acceptable.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_124f5dc3_2",
"answer_124f5dc3_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "0a995998",
"question_type": "multi-session",
"question": "How many items of clothing do I need to pick up or return from a store?",
"ground_truth": "3",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_afa9873b_2",
"answer_afa9873b_3",
"answer_afa9873b_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "6d550036",
"question_type": "multi-session",
"question": "How many projects have I led or am currently leading?",
"ground_truth": "2",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_ec904b3c_4",
"answer_ec904b3c_2",
"answer_ec904b3c_1",
"answer_ec904b3c_3"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_59c863d7",
"question_type": "multi-session",
"question": "How many model kits have I worked on or bought?",
"ground_truth": "I have worked on or bought five model kits. The scales of the models are: Revell F-15 Eagle (scale not mentioned), Tamiya 1/48 scale Spitfire Mk.V, 1/16 scale German Tiger I tank, 1/72 scale B-29 bomber, and 1/24 scale '69 Camaro.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_593bdffd_1",
"answer_593bdffd_2",
"answer_593bdffd_3",
"answer_593bdffd_4"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "b5ef892d",
"question_type": "multi-session",
"question": "How many days did I spend on camping trips in the United States this year?",
"ground_truth": "8 days.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_a8b4290f_2",
"answer_a8b4290f_3",
"answer_a8b4290f_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "e831120c",
"question_type": "multi-session",
"question": "How many weeks did it take me to watch all the Marvel Cinematic Universe movies and the main Star Wars films?",
"ground_truth": "3.5 weeks",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_86c505e7_1",
"answer_86c505e7_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "3a704032",
"question_type": "multi-session",
"question": "How many plants did I acquire in the last month?",
"ground_truth": "3",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_c2204106_2",
"answer_c2204106_3",
"answer_c2204106_1"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_d84a3211",
"question_type": "multi-session",
"question": "How much total money have I spent on bike-related expenses since the start of the year?",
"ground_truth": "$185",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_2880eb6c_3",
"answer_2880eb6c_1",
"answer_2880eb6c_4",
"answer_2880eb6c_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "aae3761f",
"question_type": "multi-session",
"question": "How many hours in total did I spend driving to my three road trip destinations combined?",
"ground_truth": "15 hours for getting to the three destinations (or 30 hours for the round trip)",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_526354c8_1",
"answer_526354c8_2",
"answer_526354c8_3"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "gpt4_f2262a51",
"question_type": "multi-session",
"question": "How many different doctors did I visit?",
"ground_truth": "I visited three different doctors: a primary care physician, an ENT specialist, and a dermatologist.",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_55a6940c_3",
"answer_55a6940c_1",
"answer_55a6940c_2"
],
"recall_any": false,
"recall_all": false,
"search_time_ms": 1,
"mode_used": "unknown"
},
{
"question_id": "dd2973ad",
"question_type": "multi-session",
"question": "What time did I go to bed on the day before I had a doctor's appointment?",
"ground_truth": "2 AM",
"retrieved_session_ids": [],
"correct_session_ids": [
"answer_f9de4602_1",
"answer_f9de4602_2"
],