Skip to content

Commit 2559eb0

Browse files
authored
fix: llamaindex testset generator (#1804)
fixes: #1695
1 parent e732231 commit 2559eb0

File tree

4 files changed

+206
-236
lines changed

4 files changed

+206
-236
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<img alt="Open In Colab" src="https://img.shields.io/pypi/dm/ragas">
2121
</a>
2222
<a href="https://discord.gg/5djav8GGNZ">
23-
<img alt="discord-invite" src="https://dcbadge.vercel.app/api/server/5djav8GGNZ?style=flat">
23+
<img alt="discord-invite" src="https://img.shields.io/discord/1119637219561451644">
2424
</a>
2525
</p>
2626

docs/howtos/integrations/_llamaindex.md

Lines changed: 71 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -85,38 +85,38 @@ df.head()
8585
<tbody>
8686
<tr>
8787
<th>0</th>
88-
<td>Why was New York named after the Duke of York?</td>
89-
<td>[Etymology ==\n\nIn 1664, New York was named i...</td>
90-
<td>New York was named after the Duke of York in 1...</td>
91-
<td>AbstractQuerySynthesizer</td>
88+
<td>Cud yu pleese explane the role of New York Cit...</td>
89+
<td>[New York, often called New York City or NYC, ...</td>
90+
<td>New York City serves as the geographical and d...</td>
91+
<td>single_hop_specifc_query_synthesizer</td>
9292
</tr>
9393
<tr>
9494
<th>1</th>
95-
<td>How did the early Europan exploraton and setle...</td>
96-
<td>[History ==\n\n\n=== Early history ===\nIn the...</td>
97-
<td>The early European exploration and settlement ...</td>
98-
<td>AbstractQuerySynthesizer</td>
95+
<td>So like, what was New York City called before ...</td>
96+
<td>[History == === Early history === In the pre-C...</td>
97+
<td>Before it was called New York, the area was kn...</td>
98+
<td>single_hop_specifc_query_synthesizer</td>
9999
</tr>
100100
<tr>
101101
<th>2</th>
102-
<td>New York City population culture finance diver...</td>
103-
<td>[New York City, the most populous city in the ...</td>
104-
<td>New York City is a global cultural, financial,...</td>
105-
<td>ComparativeAbstractQuerySynthesizer</td>
102+
<td>what happen in new york with slavery and how i...</td>
103+
<td>[and rechristened it "New Orange" after Willia...</td>
104+
<td>In the early 18th century, New York became a c...</td>
105+
<td>single_hop_specifc_query_synthesizer</td>
106106
</tr>
107107
<tr>
108108
<th>3</th>
109-
<td>How do the economic aspects of New York City, ...</td>
110-
<td>[New York City, the most populous city in the ...</td>
111-
<td>New York City's economic aspects, such as its ...</td>
112-
<td>ComparativeAbstractQuerySynthesizer</td>
109+
<td>What historical significance does Long Island ...</td>
110+
<td>[&lt;1-hop&gt;\n\nHistory == === Early history === I...</td>
111+
<td>Long Island holds historical significance in t...</td>
112+
<td>multi_hop_specific_query_synthesizer</td>
113113
</tr>
114114
<tr>
115115
<th>4</th>
116-
<td>What role do biomedical research institutions ...</td>
117-
<td>[Education ==\n\n \n\nNew York City has the la...</td>
118-
<td>Biomedical research institutions in New York C...</td>
119-
<td>SpecificQuerySynthesizer</td>
116+
<td>What role does the Staten Island Ferry play in...</td>
117+
<td>[&lt;1-hop&gt;\n\nto start service in 2017; this wou...</td>
118+
<td>The Staten Island Ferry plays a significant ro...</td>
119+
<td>multi_hop_specific_query_synthesizer</td>
120120
</tr>
121121
</tbody>
122122
</table>
@@ -154,7 +154,7 @@ df["user_input"][0]
154154

155155

156156

157-
'Why was New York named after the Duke of York?'
157+
'Cud yu pleese explane the role of New York City within the Northeast megalopolis, and how it contributes to the cultural and economic vibrancy of the region?'
158158

159159

160160

@@ -165,7 +165,7 @@ response_vector = query_engine.query(df["user_input"][0])
165165
print(response_vector)
166166
```
167167

168-
New York was named after the Duke of York because in 1664, the city was named in honor of the Duke of York, who later became King James II of England.
168+
New York City serves as a key hub within the Northeast megalopolis, playing a significant role in enhancing the cultural and economic vibrancy of the region. Its status as a global center of creativity, entrepreneurship, and cultural diversity contributes to the overall dynamism of the area. The city's renowned arts scene, including Broadway theatre and numerous cultural institutions, attracts artists and audiences from around the world, enriching the cultural landscape of the Northeast megalopolis. Economically, New York City's position as a leading financial and fintech center, home to major stock exchanges and a bustling real estate market, bolsters the region's economic strength and influence. Additionally, the city's diverse culinary scene, influenced by its immigrant history, adds to the cultural richness of the region, making New York City a vital component of the Northeast megalopolis's cultural and economic tapestry.
169169

170170

171171
## Evaluating the `QueryEngine`
@@ -216,7 +216,7 @@ ragas_dataset
216216

217217

218218

219-
EvaluationDataset(features=['user_input', 'reference_contexts', 'reference'], len=7)
219+
EvaluationDataset(features=['user_input', 'reference_contexts', 'reference'], len=6)
220220

221221

222222

@@ -239,7 +239,7 @@ result = evaluate(
239239
print(result)
240240
```
241241

242-
{'faithfulness': 0.9746, 'answer_relevancy': 0.9421, 'context_precision': 0.9286, 'context_recall': 0.6857}
242+
{'faithfulness': 0.7454, 'answer_relevancy': 0.9348, 'context_precision': 0.6667, 'context_recall': 0.4667}
243243

244244

245245
You can convert into a pandas dataframe to run more analysis on it.
@@ -284,87 +284,75 @@ result.to_pandas()
284284
<tbody>
285285
<tr>
286286
<th>0</th>
287-
<td>What events led to New York being named after ...</td>
288-
<td>[New York City is the headquarters of the glob...</td>
289-
<td>[Etymology ==\n\nIn 1664, New York was named i...</td>
290-
<td>New York was named in honor of the Duke of Yor...</td>
291-
<td>New York was named after the Duke of York in 1...</td>
292-
<td>1.000000</td>
293-
<td>0.950377</td>
294-
<td>1.0</td>
295-
<td>1.0</td>
287+
<td>Cud yu pleese explane the role of New York Cit...</td>
288+
<td>[and its ideals of liberty and peace. In the 2...</td>
289+
<td>[New York, often called New York City or NYC, ...</td>
290+
<td>New York City plays a significant role within ...</td>
291+
<td>New York City serves as the geographical and d...</td>
292+
<td>0.615385</td>
293+
<td>0.918217</td>
294+
<td>0.0</td>
295+
<td>0.0</td>
296296
</tr>
297297
<tr>
298298
<th>1</th>
299-
<td>How early European explorers and Native Americ...</td>
300-
<td>[=== Dutch rule ===\n\nA permanent European pr...</td>
301-
<td>[History ==\n\n\n=== Early history ===\nIn the...</td>
302-
<td>Early European explorers established a permane...</td>
303-
<td>Early European explorers and Native Americans ...</td>
299+
<td>So like, what was New York City called before ...</td>
300+
<td>[New York City is the headquarters of the glob...</td>
301+
<td>[History == === Early history === In the pre-C...</td>
302+
<td>New York City was named New Amsterdam before i...</td>
303+
<td>Before it was called New York, the area was kn...</td>
304304
<td>1.000000</td>
305-
<td>0.896300</td>
305+
<td>0.967821</td>
306+
<td>1.0</td>
306307
<td>1.0</td>
307-
<td>0.8</td>
308308
</tr>
309309
<tr>
310310
<th>2</th>
311-
<td>New York City population economy challenges</td>
312-
<td>[=== Wealth and income disparity ===\nNew York...</td>
313-
<td>[New York City, the most populous city in the ...</td>
314-
<td>New York City has faced challenges related to ...</td>
315-
<td>New York City, as the most populous city in th...</td>
311+
<td>what happen in new york with slavery and how i...</td>
312+
<td>[=== Province of New York and slavery ===\n\nI...</td>
313+
<td>[and rechristened it "New Orange" after Willia...</td>
314+
<td>Slavery became a significant part of New York'...</td>
315+
<td>In the early 18th century, New York became a c...</td>
316316
<td>1.000000</td>
317-
<td>0.915717</td>
317+
<td>0.919264</td>
318+
<td>1.0</td>
318319
<td>1.0</td>
319-
<td>0.0</td>
320320
</tr>
321321
<tr>
322322
<th>3</th>
323-
<td>How do the economic aspects of New York City, ...</td>
324-
<td>[=== Wealth and income disparity ===\nNew York...</td>
325-
<td>[New York City, the most populous city in the ...</td>
326-
<td>The economic aspects of New York City, as a gl...</td>
327-
<td>New York City's economic aspects as a global c...</td>
328-
<td>0.913043</td>
329-
<td>0.929317</td>
330-
<td>1.0</td>
323+
<td>What historical significance does Long Island ...</td>
324+
<td>[==== River crossings ====\n\nNew York City is...</td>
325+
<td>[&lt;1-hop&gt;\n\nHistory == === Early history === I...</td>
326+
<td>Long Island played a significant role in the e...</td>
327+
<td>Long Island holds historical significance in t...</td>
328+
<td>0.500000</td>
329+
<td>0.931895</td>
330+
<td>0.0</td>
331331
<td>0.0</td>
332332
</tr>
333333
<tr>
334334
<th>4</th>
335-
<td>What are some of the cultural and architectura...</td>
336-
<td>[==== Staten Island ====\nStaten Island (Richm...</td>
337-
<td>[Geography ==\n\nDuring the Wisconsin glaciati...</td>
338-
<td>Brooklyn is known for its cultural diversity, ...</td>
339-
<td>Brooklyn is distinct within New York City due ...</td>
340-
<td>1.000000</td>
341-
<td>0.902664</td>
342-
<td>0.5</td>
335+
<td>What role does the Staten Island Ferry play in...</td>
336+
<td>[==== Buses ====\n\nNew York City's public bus...</td>
337+
<td>[&lt;1-hop&gt;\n\nto start service in 2017; this wou...</td>
338+
<td>The Staten Island Ferry serves as a vital mode...</td>
339+
<td>The Staten Island Ferry plays a significant ro...</td>
340+
<td>0.500000</td>
341+
<td>0.936920</td>
343342
<td>1.0</td>
343+
<td>0.0</td>
344344
</tr>
345345
<tr>
346346
<th>5</th>
347-
<td>What measures has New York City implemented to...</td>
348-
<td>[==== International events ====\nIn terms of h...</td>
349-
<td>[Environment ==\n\n \nEnvironmental issues in ...</td>
350-
<td>New York City has implemented various measures...</td>
351-
<td>New York City has implemented several measures...</td>
352-
<td>0.909091</td>
353-
<td>1.000000</td>
354-
<td>1.0</td>
355-
<td>1.0</td>
356-
</tr>
357-
<tr>
358-
<th>6</th>
359-
<td>What role did New York City play during the Am...</td>
360-
<td>[=== Province of New York and slavery ===\n\nI...</td>
361-
<td>[History ==\n\n\n=== Early history ===\nIn the...</td>
362-
<td>New York City served as a significant military...</td>
363-
<td>During the American Revolution, New York City ...</td>
364-
<td>1.000000</td>
365-
<td>1.000000</td>
366-
<td>1.0</td>
347+
<td>How does Central Park's role as a cultural and...</td>
348+
<td>[==== State parks ====\n\nThere are seven stat...</td>
349+
<td>[&lt;1-hop&gt;\n\nCity has over 28,000 acres (110 km...</td>
350+
<td>Central Park's role as a cultural and historic...</td>
351+
<td>Central Park, located in middle-upper Manhatta...</td>
352+
<td>0.857143</td>
353+
<td>0.934841</td>
367354
<td>1.0</td>
355+
<td>0.8</td>
368356
</tr>
369357
</tbody>
370358
</table>

0 commit comments

Comments
 (0)