├── .gitignore ├── LICENSE ├── README.md ├── config ├── __init__.py ├── config.py └── yacs.py ├── consts.py ├── dataset.py ├── gpt.py ├── html_table.py ├── language_generation.py ├── language_summarization.py ├── parc.py ├── program_cluster.py ├── prompt.py ├── requirements.txt ├── resources ├── arc1d_cache.pkl ├── cache.json.zip ├── configs │ └── default.yaml ├── description_id_override.json ├── generated_languages │ ├── gpt4_0613_100_64.json │ ├── gpt4_0613_100_synthesized.json │ └── gpt4_0613_100_synthesized_raw.json ├── id2json.json ├── language_selection │ └── gpt4_0613_100.json ├── larc_cache.pkl ├── splits │ ├── arc1d_18x6.json │ └── random_100.json └── summarization_cache.json ├── results └── naive │ └── gpt4-0613 │ └── summarized_hypothesis │ └── vis │ ├── assets │ ├── table102 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table105 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table108 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table111 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table114 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table117 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table12 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table120 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table123 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ └── row000005_pred.png │ ├── table126 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table129 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table132 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table135 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table138 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ ├── row000005_pred.png │ │ ├── row000006_gt.png │ │ ├── row000006_input_grid.png │ │ ├── row000006_pred.png │ │ ├── row000007_gt.png │ │ ├── row000007_input_grid.png │ │ ├── row000007_pred.png │ │ ├── row000008_gt.png │ │ ├── row000008_input_grid.png │ │ ├── row000008_pred.png │ │ ├── row000009_gt.png │ │ ├── row000009_input_grid.png │ │ ├── row000009_pred.png │ │ ├── row000010_gt.png │ │ ├── row000010_input_grid.png │ │ ├── row000010_pred.png │ │ ├── row000011_gt.png │ │ ├── row000011_input_grid.png │ │ └── row000011_pred.png │ ├── table141 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table144 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table147 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ └── row000005_pred.png │ ├── table15 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table150 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table153 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table156 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table159 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table162 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table165 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table168 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table171 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table174 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table177 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table18 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table180 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table183 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table186 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table189 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table192 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table195 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ ├── row000005_pred.png │ │ ├── row000006_gt.png │ │ ├── row000006_input_grid.png │ │ └── row000006_pred.png │ ├── table198 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table201 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table204 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table207 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table21 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table210 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table213 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table216 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table219 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table222 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table225 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table228 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table231 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ └── row000005_pred.png │ ├── table234 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table237 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table24 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table240 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table243 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table246 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ ├── row000005_pred.png │ │ ├── row000006_gt.png │ │ ├── row000006_input_grid.png │ │ └── row000006_pred.png │ ├── table249 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table252 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table255 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table258 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table261 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table264 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table267 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table27 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table270 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table273 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table276 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ └── row000005_pred.png │ ├── table279 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table282 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ └── row000005_pred.png │ ├── table3 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ └── row000005_pred.png │ ├── table30 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ └── row000002_pred.png │ ├── table33 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ ├── row000005_pred.png │ │ ├── row000006_gt.png │ │ ├── row000006_input_grid.png │ │ ├── row000006_pred.png │ │ ├── row000007_gt.png │ │ ├── row000007_input_grid.png │ │ └── row000007_pred.png │ ├── table36 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ ├── row000004_pred.png │ │ ├── row000005_gt.png │ │ ├── row000005_input_grid.png │ │ └── row000005_pred.png │ ├── table39 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table42 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table45 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table48 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table51 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table54 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table57 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table6 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table60 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table63 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table66 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table69 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table72 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table75 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table78 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table81 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table84 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table87 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table9 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table90 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ ├── table93 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ ├── row000003_pred.png │ │ ├── row000004_gt.png │ │ ├── row000004_input_grid.png │ │ └── row000004_pred.png │ ├── table96 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ └── table99 │ │ ├── row000000_gt.png │ │ ├── row000000_input_grid.png │ │ ├── row000000_pred.png │ │ ├── row000001_gt.png │ │ ├── row000001_input_grid.png │ │ ├── row000001_pred.png │ │ ├── row000002_gt.png │ │ ├── row000002_input_grid.png │ │ ├── row000002_pred.png │ │ ├── row000003_gt.png │ │ ├── row000003_input_grid.png │ │ └── row000003_pred.png │ └── index.html ├── scripts └── main │ ├── 1darc │ ├── full.sh │ └── program_only.sh │ └── arc │ ├── direct.sh │ ├── dump_hypothesis.sh │ ├── human_selected_hypothesis.sh │ ├── human_written_hypothesis.sh │ ├── program_only.sh │ └── summarized_hypothesis.sh ├── temp └── impl.py ├── utils.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- 1 | temp/ 2 | __pycache__ 3 | .idea 4 | .vscode 5 | results 6 | impl.py 7 | resources/cache.json 8 | .DS_Store 9 | temp/* 10 | !temp/impl.py 11 | results/naive/gpt4-0613/summarized_hypothesis/* 12 | !results/naive/gpt4-0613/summarized_hypothesis/vis/ -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import cfg, args -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ipdb==0.13.13 2 | numpy==1.24.3 3 | openai==0.27.7 4 | pandas==2.0.2 5 | Pillow==10.3.0 6 | pyperclip==1.8.2 7 | PyYAML==6.0.1 8 | scipy==1.9.1 9 | six==1.16.0 10 | tiktoken==0.4.0 11 | tqdm==4.65.0 12 | scikit-image==0.20.0 -------------------------------------------------------------------------------- /resources/arc1d_cache.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/resources/arc1d_cache.pkl -------------------------------------------------------------------------------- /resources/cache.json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/resources/cache.json.zip -------------------------------------------------------------------------------- /resources/larc_cache.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/resources/larc_cache.pkl -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000004_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table102/row000004_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table105/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table108/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table111/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table111/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table111/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table111/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table111/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table111/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table111/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table111/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table114/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table114/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table114/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table114/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table114/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table114/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table117/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table12/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table120/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table120/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table120/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table120/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table120/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table120/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table120/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table120/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table123/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table126/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table126/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table126/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table126/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table126/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table126/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table129/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table132/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table132/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table132/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table132/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table132/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table132/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table132/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table132/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table135/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table135/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table135/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table135/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table135/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table135/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table135/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table135/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000006_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000006_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000007_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000007_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000008_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000008_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000009_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000009_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000010_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000010_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000011_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table138/row000011_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table141/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table141/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table141/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table141/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table141/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table141/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table141/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table141/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table144/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table147/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table15/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table150/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table150/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table150/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table150/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table150/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table150/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table150/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table150/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table153/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table153/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table153/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table153/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table153/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table153/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table153/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table153/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table156/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table156/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table156/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table156/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table156/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table156/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table156/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table156/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table159/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table162/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table162/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table162/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table162/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table162/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table162/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table162/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table162/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table165/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table165/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table165/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table165/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table165/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table165/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table165/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table165/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table168/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table168/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table168/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table168/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table168/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table168/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table168/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table168/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table171/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table171/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table171/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table171/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table171/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table171/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table174/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table174/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table174/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table174/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table174/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table174/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table174/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table174/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table177/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table177/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table177/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table177/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table177/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table177/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table177/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table177/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table18/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table180/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table180/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table180/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table180/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table180/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table180/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table180/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table180/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table183/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table183/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table183/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table183/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table183/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table183/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table183/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table183/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table186/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table189/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table189/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table189/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table189/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table189/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table189/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table189/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table189/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table192/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table192/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table192/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table192/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table192/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table192/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table192/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table192/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000006_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table195/row000006_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table198/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table198/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table198/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table198/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table198/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table198/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table198/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table198/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table201/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table201/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table201/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table201/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table201/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table201/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table204/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table207/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table207/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table207/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table207/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table207/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table207/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table207/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table207/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table21/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table210/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table210/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table210/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table210/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table210/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table210/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table213/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table216/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table216/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table216/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table216/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table216/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table216/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table216/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table216/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table219/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table219/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table219/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table219/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table219/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table219/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table222/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table222/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table222/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table222/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table222/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table222/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table222/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table222/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table225/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table225/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table225/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table225/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table225/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table225/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table225/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table225/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table228/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table228/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table228/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table228/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table228/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table228/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table231/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table234/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table234/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table234/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table234/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table234/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table234/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table234/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table234/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table237/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table237/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table237/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table237/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table237/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table237/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table237/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table237/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table24/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table240/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table240/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table240/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table240/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table240/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table240/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table243/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table243/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table243/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table243/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table243/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table243/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table243/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table243/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000006_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table246/row000006_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table249/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table249/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table249/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table249/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table249/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table249/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table249/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table249/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table252/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table252/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table252/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table252/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table252/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table252/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table252/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table252/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table255/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table255/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table255/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table255/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table255/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table255/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table258/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table258/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table258/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table258/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table258/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table258/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table258/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table258/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table261/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table264/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table264/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table264/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table264/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table264/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table264/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table264/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table264/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table267/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table267/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table267/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table267/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table267/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table267/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table267/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table267/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000004_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table27/row000004_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table270/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table273/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table273/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table273/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table273/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table273/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table273/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table273/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table273/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table276/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table279/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table282/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000004_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000004_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000005_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table3/row000005_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table30/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000004_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000004_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000005_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000005_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000006_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000006_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000006_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000006_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000007_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000007_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000007_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table33/row000007_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000004_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000004_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000005_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000005_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000005_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table36/row000005_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table39/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000004_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table42/row000004_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table45/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table48/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table51/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table54/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table57/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table6/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table60/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table63/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table66/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table69/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table72/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table75/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table78/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000004_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table81/row000004_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000004_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table84/row000004_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table87/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table9/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table90/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000004_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000004_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000004_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table93/row000004_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table96/row000003_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000000_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000000_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000000_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000000_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000001_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000001_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000001_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000001_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000002_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000002_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000002_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000002_pred.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000003_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000003_gt.png -------------------------------------------------------------------------------- /results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000003_pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relento/hypothesis_search/d42f029efbb33fb3486cf67d62740c4970764987/results/naive/gpt4-0613/summarized_hypothesis/vis/assets/table99/row000003_pred.png --------------------------------------------------------------------------------