forked from microsoft/RadFact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_examples.json
2320 lines (2320 loc) · 67.9 KB
/
test_examples.json
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
[
{
"study_id": "N/A",
"input": {
"phrases_A": [
"There is a new abnormal density filling most of the right hemithorax.",
"The visualized aerated left lung demonstrates no other malady.",
"Carotid arterial calcifications are present."
],
"phrases_B": [
"The heart is borderline in size.",
"There is no evidence of CHF.",
"No infiltrate.",
"Evaluation of the retrocardiac left lower lobe is somewhat limited.",
"The diaphragm is well-visualized."
]
},
"example_id": "example_0",
"output": {
"phrases_A_evidenced": [
{
"phrase": "There is a new abnormal density filling most of the right hemithorax.",
"status": "neutral",
"evidence": []
},
{
"phrase": "The visualized aerated left lung demonstrates no other malady.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Carotid arterial calcifications are present.",
"status": "neutral",
"evidence": []
}
],
"phrases_B_evidenced": [
{
"phrase": "The heart is borderline in size.",
"status": "neutral",
"evidence": []
},
{
"phrase": "There is no evidence of CHF.",
"status": "neutral",
"evidence": []
},
{
"phrase": "No infiltrate.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Evaluation of the retrocardiac left lower lobe is somewhat limited.",
"status": "neutral",
"evidence": []
},
{
"phrase": "The diaphragm is well-visualized.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"Lungs are free of active infiltrate or mass.",
"Heart size is normal for this projection.",
"Previous sternotomy is noted.",
"Other bones and soft tissues are unremarkable."
],
"phrases_B": [
"The heart size is normal.",
"The lungs are free of acute infiltrates."
]
},
"example_id": "example_1",
"output": {
"phrases_A_evidenced": [
{
"phrase": "Lungs are free of active infiltrate or mass.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Heart size is normal for this projection.",
"status": "entailment",
"evidence": [
"The heart size is normal."
]
},
{
"phrase": "Previous sternotomy is noted.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Other bones and soft tissues are unremarkable.",
"status": "neutral",
"evidence": []
}
],
"phrases_B_evidenced": [
{
"phrase": "The heart size is normal.",
"status": "entailment",
"evidence": [
"Heart size is normal for this projection."
]
},
{
"phrase": "The lungs are free of acute infiltrates.",
"status": "entailment",
"evidence": [
"Lungs are free of active infiltrate or mass."
]
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"Normal cardiac silhouette.",
"Lungs are clear.",
"No acute fractures in the left ribs."
],
"phrases_B": [
"There are no displaced right rib fractures.",
"The heart size is normal.",
"The lungs are clear.",
"There is no pneumothorax."
]
},
"example_id": "example_2",
"output": {
"phrases_A_evidenced": [
{
"phrase": "Normal cardiac silhouette.",
"status": "entailment",
"evidence": [
"The heart size is normal."
]
},
{
"phrase": "Lungs are clear.",
"status": "entailment",
"evidence": [
"The lungs are clear."
]
},
{
"phrase": "No acute fractures in the left ribs.",
"status": "neutral",
"evidence": []
}
],
"phrases_B_evidenced": [
{
"phrase": "There are no displaced right rib fractures.",
"status": "neutral",
"evidence": []
},
{
"phrase": "The heart size is normal.",
"status": "entailment",
"evidence": [
"Normal cardiac silhouette."
]
},
{
"phrase": "The lungs are clear.",
"status": "entailment",
"evidence": [
"Lungs are clear."
]
},
{
"phrase": "There is no pneumothorax.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"Normal heart size.",
"Increased bilateral perihilar infiltrates.",
"Increased lower lobe infiltrates left greater than right.",
"A VP shunt is still in place."
],
"phrases_B": [
"An enlarged heart.",
"Stable pacemaker leads.",
"Bilateral pleural effusions are again noted."
]
},
"example_id": "example_3",
"output": {
"phrases_A_evidenced": [
{
"phrase": "Normal heart size.",
"status": "contradiction",
"evidence": [
"An enlarged heart."
]
},
{
"phrase": "Increased bilateral perihilar infiltrates.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Increased lower lobe infiltrates left greater than right.",
"status": "neutral",
"evidence": []
},
{
"phrase": "A VP shunt is still in place.",
"status": "neutral",
"evidence": []
}
],
"phrases_B_evidenced": [
{
"phrase": "An enlarged heart.",
"status": "contradiction",
"evidence": [
"Normal heart size."
]
},
{
"phrase": "Stable pacemaker leads.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Bilateral pleural effusions are again noted.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"Development of diffuse bilateral airspace disease.",
"No pleural fluid.",
"Cardiac outline is not enlarged.",
"Widening of the mediastinum."
],
"phrases_B": [
"Lower lung opacities similar to the prior.",
"There is no pleural fluid.",
"Heart mildly enlarged.",
"Pulmonary arteries mildly prominent.",
"Surgical clips in the upper abdomen.",
"Thoracolumbar scoliosis."
]
},
"example_id": "example_4",
"output": {
"phrases_A_evidenced": [
{
"phrase": "Development of diffuse bilateral airspace disease.",
"status": "neutral",
"evidence": []
},
{
"phrase": "No pleural fluid.",
"status": "entailment",
"evidence": [
"There is no pleural fluid."
]
},
{
"phrase": "Cardiac outline is not enlarged.",
"status": "contradiction",
"evidence": [
"Heart mildly enlarged."
]
},
{
"phrase": "Widening of the mediastinum.",
"status": "neutral",
"evidence": []
}
],
"phrases_B_evidenced": [
{
"phrase": "Lower lung opacities similar to the prior.",
"status": "neutral",
"evidence": []
},
{
"phrase": "There is no pleural fluid.",
"status": "entailment",
"evidence": [
"No pleural fluid."
]
},
{
"phrase": "Heart mildly enlarged.",
"status": "contradiction",
"evidence": [
"Cardiac outline is not enlarged."
]
},
{
"phrase": "Pulmonary arteries mildly prominent.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Surgical clips in the upper abdomen.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Thoracolumbar scoliosis.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"Heart size is normal.",
"Strandy densities at the left lung base are noted.",
"Aside from strandy densities at the left lung base, lungs are clear."
],
"phrases_B": [
"The heart size is normal.",
"The right hemithorax is clear.",
"There is blunting of the left CP angle.",
"There is a linear area of increased radiodensity in the left retrocardiac region."
]
},
"example_id": "example_5",
"output": {
"phrases_A_evidenced": [
{
"phrase": "Heart size is normal.",
"status": "entailment",
"evidence": [
"The heart size is normal."
]
},
{
"phrase": "Strandy densities at the left lung base are noted.",
"status": "entailment",
"evidence": [
"There is a linear area of increased radiodensity in the left retrocardiac region."
]
},
{
"phrase": "Aside from strandy densities at the left lung base, lungs are clear.",
"status": "neutral",
"evidence": []
}
],
"phrases_B_evidenced": [
{
"phrase": "The heart size is normal.",
"status": "entailment",
"evidence": [
"Heart size is normal."
]
},
{
"phrase": "The right hemithorax is clear.",
"status": "entailment",
"evidence": [
"Aside from strandy densities at the left lung base, lungs are clear."
]
},
{
"phrase": "There is blunting of the left CP angle.",
"status": "neutral",
"evidence": []
},
{
"phrase": "There is a linear area of increased radiodensity in the left retrocardiac region.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"Demonstrates borderline cardiomegaly.",
"Lung fields are clear.",
"Multiple metallic foreign bodies overlie the left arm and left lateral chest or breast."
],
"phrases_B": [
"Borderline cardiomegaly.",
"Lung fields are clear.",
"There are healed fractures of the left sixth and seventh posterior ribs."
]
},
"example_id": "example_6",
"output": {
"phrases_A_evidenced": [
{
"phrase": "Demonstrates borderline cardiomegaly.",
"status": "entailment",
"evidence": [
"Borderline cardiomegaly."
]
},
{
"phrase": "Lung fields are clear.",
"status": "entailment",
"evidence": [
"Lung fields are clear."
]
},
{
"phrase": "Multiple metallic foreign bodies overlie the left arm and left lateral chest or breast.",
"status": "neutral",
"evidence": []
}
],
"phrases_B_evidenced": [
{
"phrase": "Borderline cardiomegaly.",
"status": "entailment",
"evidence": [
"Demonstrates borderline cardiomegaly."
]
},
{
"phrase": "Lung fields are clear.",
"status": "entailment",
"evidence": [
"Lung fields are clear."
]
},
{
"phrase": "There are healed fractures of the left sixth and seventh posterior ribs.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"The heart is within normal limits.",
"The lungs are within normal limits.",
"The mediastinal structures are within normal limits.",
"There are no osseous abnormalities."
],
"phrases_B": [
"Lungs are well expanded and clear.",
"Cardiac silhouette appears normal.",
"No fractures are noted.",
"There is no pneumothorax.",
"There is no pleural fluid."
]
},
"example_id": "example_7",
"output": {
"phrases_A_evidenced": [
{
"phrase": "The heart is within normal limits.",
"status": "entailment",
"evidence": [
"Cardiac silhouette appears normal."
]
},
{
"phrase": "The lungs are within normal limits.",
"status": "entailment",
"evidence": [
"Lungs are well expanded and clear."
]
},
{
"phrase": "The mediastinal structures are within normal limits.",
"status": "neutral",
"evidence": []
},
{
"phrase": "There are no osseous abnormalities.",
"status": "neutral",
"evidence": []
}
],
"phrases_B_evidenced": [
{
"phrase": "Lungs are well expanded and clear.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Cardiac silhouette appears normal.",
"status": "entailment",
"evidence": [
"The heart is within normal limits."
]
},
{
"phrase": "No fractures are noted.",
"status": "entailment",
"evidence": [
"There are no osseous abnormalities."
]
},
{
"phrase": "There is no pneumothorax.",
"status": "neutral",
"evidence": []
},
{
"phrase": "There is no pleural fluid.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"No fractures are evident.",
"Heart size appears normal.",
"Lungs are underexpanded.",
"No pneumothorax is noted."
],
"phrases_B": [
"The heart size is enlarged.",
"Lungs are clear."
]
},
"example_id": "example_8",
"output": {
"phrases_A_evidenced": [
{
"phrase": "No fractures are evident.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Heart size appears normal.",
"status": "contradiction",
"evidence": [
"The heart size is enlarged."
]
},
{
"phrase": "Lungs are underexpanded.",
"status": "neutral",
"evidence": []
},
{
"phrase": "No pneumothorax is noted.",
"status": "neutral",
"evidence": []
}
],
"phrases_B_evidenced": [
{
"phrase": "The heart size is enlarged.",
"status": "contradiction",
"evidence": [
"Heart size appears normal."
]
},
{
"phrase": "Lungs are clear.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"There is blunting of the right costophrenic angle.",
"The heart is borderline in size.",
"There is uncoiling of the aorta.",
"No obvious infiltrate is noted."
],
"phrases_B": [
"There is density in the right lower lung field.",
"The diaphragm is elevated.",
"Infiltrate in the right lower lobe.",
"Atelectasis in the right lower lobe."
]
},
"example_id": "example_9",
"output": {
"phrases_A_evidenced": [
{
"phrase": "There is blunting of the right costophrenic angle.",
"status": "neutral",
"evidence": []
},
{
"phrase": "The heart is borderline in size.",
"status": "neutral",
"evidence": []
},
{
"phrase": "There is uncoiling of the aorta.",
"status": "neutral",
"evidence": []
},
{
"phrase": "No obvious infiltrate is noted.",
"status": "contradiction",
"evidence": [
"Infiltrate in the right lower lobe."
]
}
],
"phrases_B_evidenced": [
{
"phrase": "There is density in the right lower lung field.",
"status": "entailment",
"evidence": [
"There is blunting of the right costophrenic angle."
]
},
{
"phrase": "The diaphragm is elevated.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Infiltrate in the right lower lobe.",
"status": "contradiction",
"evidence": [
"No obvious infiltrate is noted."
]
},
{
"phrase": "Atelectasis in the right lower lobe.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"The heart is within normal limits.",
"The lungs are within normal limits.",
"The mediastinal structures are within normal limits.",
"Stable arthritis about the lower thoracic spine."
],
"phrases_B": [
"No suspicious pulmonary consolidation is present.",
"No pleural effusion is present.",
"No pneumothorax is present.",
"Cardiomediastinal silhouette is within normal limits.",
"Pulmonary vasculature is within normal limits.",
"Osseous structures are unremarkable."
]
},
"example_id": "example_10",
"output": {
"phrases_A_evidenced": [
{
"phrase": "The heart is within normal limits.",
"status": "entailment",
"evidence": [
"Cardiomediastinal silhouette is within normal limits."
]
},
{
"phrase": "The lungs are within normal limits.",
"status": "neutral",
"evidence": []
},
{
"phrase": "The mediastinal structures are within normal limits.",
"status": "entailment",
"evidence": [
"Cardiomediastinal silhouette is within normal limits."
]
},
{
"phrase": "Stable arthritis about the lower thoracic spine.",
"status": "contradiction",
"evidence": [
"Osseous structures are unremarkable."
]
}
],
"phrases_B_evidenced": [
{
"phrase": "No suspicious pulmonary consolidation is present.",
"status": "entailment",
"evidence": [
"The lungs are within normal limits."
]
},
{
"phrase": "No pleural effusion is present.",
"status": "neutral",
"evidence": []
},
{
"phrase": "No pneumothorax is present.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Cardiomediastinal silhouette is within normal limits.",
"status": "entailment",
"evidence": [
"The heart is within normal limits.",
"The mediastinal structures are within normal limits."
]
},
{
"phrase": "Pulmonary vasculature is within normal limits.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Osseous structures are unremarkable.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"study_id": "N/A",
"input": {
"phrases_A": [
"No lobar consolidation.",
"No pleural effusion.",
"Median sternotomy wires noted.",
"Degenerative changes in the spine."
],
"phrases_B": [
"The cardiac silhouette is mildly enlarged on the PA view.",
"No pleural effusion is identified.",
"No pneumothorax is identified.",
"Multilevel degenerative disease is present in the spine.",
"Mild compression deformities in the lower thoracic spine are again noted.",
"Mild compression deformities in the superior lumbar spine are again noted."
]
},
"example_id": "example_11",
"output": {
"phrases_A_evidenced": [
{
"phrase": "No lobar consolidation.",
"status": "neutral",
"evidence": []
},
{
"phrase": "No pleural effusion.",
"status": "entailment",
"evidence": [
"No pleural effusion is identified."
]
},
{
"phrase": "Median sternotomy wires noted.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Degenerative changes in the spine.",
"status": "entailment",
"evidence": [
"Multilevel degenerative disease is present in the spine."
]
}
],
"phrases_B_evidenced": [
{
"phrase": "The cardiac silhouette is mildly enlarged on the PA view.",
"status": "neutral",
"evidence": []
},
{
"phrase": "No pleural effusion is identified.",
"status": "entailment",
"evidence": [
"No pleural effusion."
]
},
{
"phrase": "No pneumothorax is identified.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Multilevel degenerative disease is present in the spine.",
"status": "entailment",
"evidence": [
"Degenerative changes in the spine."
]
},
{
"phrase": "Mild compression deformities in the lower thoracic spine are again noted.",
"status": "neutral",
"evidence": []
},
{
"phrase": "Mild compression deformities in the superior lumbar spine are again noted.",
"status": "neutral",
"evidence": []
}
]
}
},
{
"example_id": "example_12",
"study_id": "nan",
"input": {
"phrases_A": [
"The heart is stable.",
"No infiltrate is seen.",
"No pneumothorax is seen."
],
"phrases_B": [
"Interstitial opacities are similar to the prior exam.",
"No pneumothorax.",
"No effusion.",
"Unremarkable cardiac silhouette."
]
},
"rationale": "rationale",
"output": {
"phrases_A_evidenced": [
{
"evidence": [],
"phrase": "The heart is stable.",
"status": "neutral"
},
{
"evidence": [
"Interstitial opacities are similar to the prior exam."
],
"phrase": "No infiltrate is seen.",
"status": "contradiction"
},
{
"evidence": [
"No pneumothorax."
],
"phrase": "No pneumothorax is seen.",
"status": "entailment"
}
],
"phrases_B_evidenced": [
{
"evidence": [
"No infiltrate is seen."
],
"phrase": "Interstitial opacities are similar to the prior exam.",
"status": "contradiction"
},
{
"evidence": [
"No pneumothorax is seen."
],
"phrase": "No pneumothorax.",
"status": "entailment"
},
{
"evidence": [],
"phrase": "No effusion.",
"status": "neutral"
},
{
"evidence": [],
"phrase": "Unremarkable cardiac silhouette.",
"status": "neutral"
}
]
}
},
{
"example_id": "example_13",
"study_id": "nan",
"input": {
"phrases_A": [
"There are postsurgical changes in the left lower chest with chain staples.",
"There is a small left pleural effusion.",
"Right lung is clear without focal abnormality.",
"There is no pneumothorax."
],
"phrases_B": [
"Persistent well-demarcated density in the region of the fissure on the right slightly smaller in size.",
"Left lung is clear.",
"Small right pleural effusion is noted.",
"No pneumothorax is seen."
]
},
"rationale": "rationale",
"output": {
"phrases_A_evidenced": [
{
"evidence": [],
"phrase": "There are postsurgical changes in the left lower chest with chain staples.",
"status": "neutral"
},
{
"evidence": [],
"phrase": "There is a small left pleural effusion.",
"status": "neutral"
},
{
"evidence": [
"Persistent well-demarcated density in the region of the fissure on the right slightly smaller in size."
],
"phrase": "Right lung is clear without focal abnormality.",
"status": "contradiction"
},
{
"evidence": [
"No pneumothorax is seen."
],
"phrase": "There is no pneumothorax.",
"status": "entailment"
}
],
"phrases_B_evidenced": [
{
"evidence": [
"Right lung is clear without focal abnormality."
],
"phrase": "Persistent well-demarcated density in the region of the fissure on the right slightly smaller in size.",
"status": "contradiction"
},
{
"evidence": [],
"phrase": "Left lung is clear.",
"status": "neutral"
},
{
"evidence": [],
"phrase": "Small right pleural effusion is noted.",
"status": "neutral"
},
{
"evidence": [
"There is no pneumothorax."
],
"phrase": "No pneumothorax is seen.",
"status": "entailment"
}
]
}
},
{
"example_id": "example_14",
"study_id": "nan",
"input": {
"phrases_A": [
"The lungs are clear.",
"The cardiomediastinal silhouette is unremarkable.",
"There are no pleural effusions."
],
"phrases_B": [
"The cardiomediastinal silhouette appears unremarkable.",
"Implanted defibrillator device remains in place.",
"Appearance of both lung fields is stable.",
"Lungs remain hyperinflated."
]
},
"rationale": "rationale",
"output": {
"phrases_A_evidenced": [
{
"evidence": [],
"phrase": "The lungs are clear.",
"status": "neutral"
},