|
84 | 84 | # self-contained. The passages deliberately overlap in topic so reranking |
85 | 85 | # has something to disambiguate. |
86 | 86 | CORPUS: list[str] = [ |
87 | | - "The Moon's south pole holds water ice in permanently shadowed crater floors " |
88 | | - "that never see sunlight, a candidate resource for future crews.", |
89 | | - "Apollo 11 landed in the Sea of Tranquility in July 1969; Armstrong and Aldrin " |
90 | | - "spent about two and a half hours walking on the surface.", |
91 | | - "The lunar maria are vast basaltic plains that formed when ancient impact basins " |
92 | | - "flooded with lava, giving the near side its dark patches.", |
93 | | - "A lunar day lasts about 29.5 Earth days, so any point on the surface sees roughly " |
94 | | - "two weeks of sunlight followed by two weeks of night.", |
95 | | - "The Moon is slowly receding from Earth at about 3.8 centimeters per year, measured " |
96 | | - "by bouncing lasers off the retroreflectors Apollo crews left behind.", |
97 | | - "Regolith, the layer of loose dust and broken rock covering the Moon, is abrasive " |
98 | | - "and clings to everything, a persistent hazard for equipment and spacesuits.", |
99 | | - "Apollo 13 aborted its landing after an oxygen tank ruptured; the crew looped around " |
100 | | - "the Moon and returned safely using the lunar module as a lifeboat.", |
101 | | - "Permanently shadowed regions near the poles are among the coldest places in the " |
102 | | - "solar system, cold enough to trap water ice for billions of years.", |
| 87 | + ( |
| 88 | + "The Moon's south pole holds water ice in permanently shadowed crater floors " |
| 89 | + "that never see sunlight, a candidate resource for future crews." |
| 90 | + ), |
| 91 | + ( |
| 92 | + "Apollo 11 landed in the Sea of Tranquility in July 1969; Armstrong and Aldrin " |
| 93 | + "spent about two and a half hours walking on the surface." |
| 94 | + ), |
| 95 | + ( |
| 96 | + "The lunar maria are vast basaltic plains that formed when ancient impact basins " |
| 97 | + "flooded with lava, giving the near side its dark patches." |
| 98 | + ), |
| 99 | + ( |
| 100 | + "A lunar day lasts about 29.5 Earth days, so any point on the surface sees roughly " |
| 101 | + "two weeks of sunlight followed by two weeks of night." |
| 102 | + ), |
| 103 | + ( |
| 104 | + "The Moon is slowly receding from Earth at about 3.8 centimeters per year, measured " |
| 105 | + "by bouncing lasers off the retroreflectors Apollo crews left behind." |
| 106 | + ), |
| 107 | + ( |
| 108 | + "Regolith, the layer of loose dust and broken rock covering the Moon, is abrasive " |
| 109 | + "and clings to everything, a persistent hazard for equipment and spacesuits." |
| 110 | + ), |
| 111 | + ( |
| 112 | + "Apollo 13 aborted its landing after an oxygen tank ruptured; the crew looped around " |
| 113 | + "the Moon and returned safely using the lunar module as a lifeboat." |
| 114 | + ), |
| 115 | + ( |
| 116 | + "Permanently shadowed regions near the poles are among the coldest places in the " |
| 117 | + "solar system, cold enough to trap water ice for billions of years." |
| 118 | + ), |
103 | 119 | ] |
104 | 120 |
|
105 | 121 | # How many candidates cosine retrieval hands to the reranker, and how many |
|
0 commit comments