Adapters
khulnasoft commited on
Commit
5e9a2b2
1 Parent(s): d6ee4a9

Create notebooks/duo-chat/independent-judge.ipynb

Browse files
notebooks/duo-chat/independent-judge.ipynb ADDED
@@ -0,0 +1,723 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 157,
6
+ "id": "e0fac999-99be-4cc3-aed8-b652c890326a",
7
+ "metadata": {},
8
+ "outputs": [],
9
+ "source": [
10
+ "import matplotlib.pyplot as plt\n",
11
+ "import seaborn as sns\n",
12
+ "import pandas as pd\n",
13
+ "pd.set_option('display.max_colwidth', None)"
14
+ ]
15
+ },
16
+ {
17
+ "cell_type": "code",
18
+ "execution_count": 158,
19
+ "id": "c698a96d-627e-4dbb-aa88-444895dfd4f4",
20
+ "metadata": {},
21
+ "outputs": [],
22
+ "source": [
23
+ "# load datasets\n",
24
+ "exps = [\n",
25
+ " {\n",
26
+ " 'name': 'duo-chat with mistral',\n",
27
+ " 'dataset': 'code-generation',\n",
28
+ " 'path':'/Users/bruno/Downloads/code_explanation_v3_20240627_124851__independent_llm_judge-00000-of-00001.csv'\n",
29
+ " },\n",
30
+ " {\n",
31
+ " 'name': 'duo-chat with mistral',\n",
32
+ " 'dataset': 'code-explanation',\n",
33
+ " 'path':'/Users/bruno/Downloads/code_explanation_v3_20240627_124851__independent_llm_judge-00000-of-00001.csv'\n",
34
+ " },\n",
35
+ " {\n",
36
+ " 'name': 'duo-chat with mistral',\n",
37
+ " 'dataset': 'code-documentation',\n",
38
+ " 'path':'/Users/bruno/Downloads/code_explanation_v3_20240627_124851__independent_llm_judge-00000-of-00001.csv'\n",
39
+ " },\n",
40
+ "]"
41
+ ]
42
+ },
43
+ {
44
+ "cell_type": "code",
45
+ "execution_count": 159,
46
+ "id": "271ffee8-14c9-49f0-9529-143ffce6bece",
47
+ "metadata": {},
48
+ "outputs": [],
49
+ "source": [
50
+ "dfs = []\n",
51
+ "for exp in exps:\n",
52
+ " _df = pd.read_csv(exp['path'])\n",
53
+ " _df['answering_model'] = exp['name']\n",
54
+ " _df['dataset'] = exp['dataset']\n",
55
+ " _df.drop(columns=['final_prompt_for_evaluating_model'], inplace=True)\n",
56
+ " dfs.append(_df)\n",
57
+ "df = pd.concat(dfs) "
58
+ ]
59
+ },
60
+ {
61
+ "cell_type": "code",
62
+ "execution_count": 160,
63
+ "id": "823425a9-3a71-4493-a257-0715dc3e10e2",
64
+ "metadata": {},
65
+ "outputs": [
66
+ {
67
+ "data": {
68
+ "text/html": [
69
+ "<div>\n",
70
+ "<style scoped>\n",
71
+ " .dataframe tbody tr th:only-of-type {\n",
72
+ " vertical-align: middle;\n",
73
+ " }\n",
74
+ "\n",
75
+ " .dataframe tbody tr th {\n",
76
+ " vertical-align: top;\n",
77
+ " }\n",
78
+ "\n",
79
+ " .dataframe thead th {\n",
80
+ " text-align: right;\n",
81
+ " }\n",
82
+ "</style>\n",
83
+ "<table border=\"1\" class=\"dataframe\">\n",
84
+ " <thead>\n",
85
+ " <tr style=\"text-align: right;\">\n",
86
+ " <th></th>\n",
87
+ " <th>question</th>\n",
88
+ " <th>context</th>\n",
89
+ " <th>answering_model</th>\n",
90
+ " <th>final_prompt_for_answering_model</th>\n",
91
+ " <th>answer</th>\n",
92
+ " <th>evaluating_model</th>\n",
93
+ " <th>correctness</th>\n",
94
+ " <th>readability</th>\n",
95
+ " <th>comprehensiveness</th>\n",
96
+ " <th>explanation</th>\n",
97
+ " <th>llm_error</th>\n",
98
+ " <th>created_at</th>\n",
99
+ " <th>dataset</th>\n",
100
+ " </tr>\n",
101
+ " </thead>\n",
102
+ " <tbody>\n",
103
+ " <tr>\n",
104
+ " <th>0</th>\n",
105
+ " <td>Explain this code</td>\n",
106
+ " <td>Cartfile.resolved\\n</td>\n",
107
+ " <td>duo-chat with mistral</td>\n",
108
+ " <td>{\"content\": \"Explain this code\\nCartfile.resolved\\n\\n\", \"resource_type\": null, \"resource_id\": null, \"with_clean_history\": true}</td>\n",
109
+ " <td>The `Cartfile.resolved` file lists the installed dependencies for each software package in your system that was installed via Homebrew. This file is automatically generated by Homebrew and helps keep track of the installed dependencies, their versions, and any dependencies they may have.</td>\n",
110
+ " <td>text-bison-32k@latest</td>\n",
111
+ " <td>3</td>\n",
112
+ " <td>3</td>\n",
113
+ " <td>2</td>\n",
114
+ " <td>The answer is good but it could be improved by providing more details about the content of the Cartfile.resolved file.</td>\n",
115
+ " <td>This field should be deprecated</td>\n",
116
+ " <td>2024-06-27 10:49:29.759004+00:00</td>\n",
117
+ " <td>code-generation</td>\n",
118
+ " </tr>\n",
119
+ " </tbody>\n",
120
+ "</table>\n",
121
+ "</div>"
122
+ ],
123
+ "text/plain": [
124
+ " question context answering_model \\\n",
125
+ "0 Explain this code Cartfile.resolved\\n duo-chat with mistral \n",
126
+ "\n",
127
+ " final_prompt_for_answering_model \\\n",
128
+ "0 {\"content\": \"Explain this code\\nCartfile.resolved\\n\\n\", \"resource_type\": null, \"resource_id\": null, \"with_clean_history\": true} \n",
129
+ "\n",
130
+ " answer \\\n",
131
+ "0 The `Cartfile.resolved` file lists the installed dependencies for each software package in your system that was installed via Homebrew. This file is automatically generated by Homebrew and helps keep track of the installed dependencies, their versions, and any dependencies they may have. \n",
132
+ "\n",
133
+ " evaluating_model correctness readability comprehensiveness \\\n",
134
+ "0 text-bison-32k@latest 3 3 2 \n",
135
+ "\n",
136
+ " explanation \\\n",
137
+ "0 The answer is good but it could be improved by providing more details about the content of the Cartfile.resolved file. \n",
138
+ "\n",
139
+ " llm_error created_at \\\n",
140
+ "0 This field should be deprecated 2024-06-27 10:49:29.759004+00:00 \n",
141
+ "\n",
142
+ " dataset \n",
143
+ "0 code-generation "
144
+ ]
145
+ },
146
+ "execution_count": 160,
147
+ "metadata": {},
148
+ "output_type": "execute_result"
149
+ }
150
+ ],
151
+ "source": [
152
+ "# Show a single row\n",
153
+ "df.head(1)"
154
+ ]
155
+ },
156
+ {
157
+ "cell_type": "markdown",
158
+ "id": "9d17d488-1022-488d-9a5c-8845cd20f143",
159
+ "metadata": {},
160
+ "source": [
161
+ "# Average of metrics per test"
162
+ ]
163
+ },
164
+ {
165
+ "cell_type": "code",
166
+ "execution_count": 161,
167
+ "id": "fa3b8f89-22ca-4623-8c17-cca99001d685",
168
+ "metadata": {},
169
+ "outputs": [
170
+ {
171
+ "data": {
172
+ "text/html": [
173
+ "<div>\n",
174
+ "<style scoped>\n",
175
+ " .dataframe tbody tr th:only-of-type {\n",
176
+ " vertical-align: middle;\n",
177
+ " }\n",
178
+ "\n",
179
+ " .dataframe tbody tr th {\n",
180
+ " vertical-align: top;\n",
181
+ " }\n",
182
+ "\n",
183
+ " .dataframe thead th {\n",
184
+ " text-align: right;\n",
185
+ " }\n",
186
+ "</style>\n",
187
+ "<table border=\"1\" class=\"dataframe\">\n",
188
+ " <thead>\n",
189
+ " <tr style=\"text-align: right;\">\n",
190
+ " <th></th>\n",
191
+ " <th></th>\n",
192
+ " <th>avg_correctness</th>\n",
193
+ " <th>avg_readability</th>\n",
194
+ " <th>avg_comprehensiveness</th>\n",
195
+ " <th>n_test_cases</th>\n",
196
+ " </tr>\n",
197
+ " <tr>\n",
198
+ " <th>answering_model</th>\n",
199
+ " <th>dataset</th>\n",
200
+ " <th></th>\n",
201
+ " <th></th>\n",
202
+ " <th></th>\n",
203
+ " <th></th>\n",
204
+ " </tr>\n",
205
+ " </thead>\n",
206
+ " <tbody>\n",
207
+ " <tr>\n",
208
+ " <th rowspan=\"3\" valign=\"top\">duo-chat with mistral</th>\n",
209
+ " <th>code-documentation</th>\n",
210
+ " <td>2.83</td>\n",
211
+ " <td>3.1</td>\n",
212
+ " <td>2.51</td>\n",
213
+ " <td>345</td>\n",
214
+ " </tr>\n",
215
+ " <tr>\n",
216
+ " <th>code-explanation</th>\n",
217
+ " <td>2.83</td>\n",
218
+ " <td>3.1</td>\n",
219
+ " <td>2.51</td>\n",
220
+ " <td>345</td>\n",
221
+ " </tr>\n",
222
+ " <tr>\n",
223
+ " <th>code-generation</th>\n",
224
+ " <td>2.83</td>\n",
225
+ " <td>3.1</td>\n",
226
+ " <td>2.51</td>\n",
227
+ " <td>345</td>\n",
228
+ " </tr>\n",
229
+ " </tbody>\n",
230
+ "</table>\n",
231
+ "</div>"
232
+ ],
233
+ "text/plain": [
234
+ " avg_correctness avg_readability \\\n",
235
+ "answering_model dataset \n",
236
+ "duo-chat with mistral code-documentation 2.83 3.1 \n",
237
+ " code-explanation 2.83 3.1 \n",
238
+ " code-generation 2.83 3.1 \n",
239
+ "\n",
240
+ " avg_comprehensiveness n_test_cases \n",
241
+ "answering_model dataset \n",
242
+ "duo-chat with mistral code-documentation 2.51 345 \n",
243
+ " code-explanation 2.51 345 \n",
244
+ " code-generation 2.51 345 "
245
+ ]
246
+ },
247
+ "execution_count": 161,
248
+ "metadata": {},
249
+ "output_type": "execute_result"
250
+ }
251
+ ],
252
+ "source": [
253
+ "df_all = df.groupby(['answering_model', 'dataset']).agg(\n",
254
+ " avg_correctness=('correctness', 'mean'),\n",
255
+ " avg_readability=('readability', 'mean'),\n",
256
+ " avg_comprehensiveness=('comprehensiveness', 'mean'),\n",
257
+ " n_test_cases=('answering_model', 'count')\n",
258
+ ").round(2)\n",
259
+ "df_all.sort_values(['answering_model', 'dataset'])"
260
+ ]
261
+ },
262
+ {
263
+ "cell_type": "markdown",
264
+ "id": "edb5c30c-a485-43fa-9872-e7391151a9a5",
265
+ "metadata": {},
266
+ "source": [
267
+ "# Distribution of criteria"
268
+ ]
269
+ },
270
+ {
271
+ "cell_type": "code",
272
+ "execution_count": 162,
273
+ "id": "49ee259e-8126-4222-b816-43698afab5a1",
274
+ "metadata": {},
275
+ "outputs": [
276
+ {
277
+ "data": {
278
+ "text/html": [
279
+ "<div>\n",
280
+ "<style scoped>\n",
281
+ " .dataframe tbody tr th:only-of-type {\n",
282
+ " vertical-align: middle;\n",
283
+ " }\n",
284
+ "\n",
285
+ " .dataframe tbody tr th {\n",
286
+ " vertical-align: top;\n",
287
+ " }\n",
288
+ "\n",
289
+ " .dataframe thead th {\n",
290
+ " text-align: right;\n",
291
+ " }\n",
292
+ "</style>\n",
293
+ "<table border=\"1\" class=\"dataframe\">\n",
294
+ " <thead>\n",
295
+ " <tr style=\"text-align: right;\">\n",
296
+ " <th></th>\n",
297
+ " <th>correctness</th>\n",
298
+ " <th>1</th>\n",
299
+ " <th>2</th>\n",
300
+ " <th>3</th>\n",
301
+ " <th>4</th>\n",
302
+ " </tr>\n",
303
+ " <tr>\n",
304
+ " <th>answering_model</th>\n",
305
+ " <th>dataset</th>\n",
306
+ " <th></th>\n",
307
+ " <th></th>\n",
308
+ " <th></th>\n",
309
+ " <th></th>\n",
310
+ " </tr>\n",
311
+ " </thead>\n",
312
+ " <tbody>\n",
313
+ " <tr>\n",
314
+ " <th rowspan=\"3\" valign=\"top\">duo-chat with mistral</th>\n",
315
+ " <th>code-documentation</th>\n",
316
+ " <td>86</td>\n",
317
+ " <td>0</td>\n",
318
+ " <td>145</td>\n",
319
+ " <td>114</td>\n",
320
+ " </tr>\n",
321
+ " <tr>\n",
322
+ " <th>code-explanation</th>\n",
323
+ " <td>86</td>\n",
324
+ " <td>0</td>\n",
325
+ " <td>145</td>\n",
326
+ " <td>114</td>\n",
327
+ " </tr>\n",
328
+ " <tr>\n",
329
+ " <th>code-generation</th>\n",
330
+ " <td>86</td>\n",
331
+ " <td>0</td>\n",
332
+ " <td>145</td>\n",
333
+ " <td>114</td>\n",
334
+ " </tr>\n",
335
+ " </tbody>\n",
336
+ "</table>\n",
337
+ "</div>"
338
+ ],
339
+ "text/plain": [
340
+ "correctness 1 2 3 4\n",
341
+ "answering_model dataset \n",
342
+ "duo-chat with mistral code-documentation 86 0 145 114\n",
343
+ " code-explanation 86 0 145 114\n",
344
+ " code-generation 86 0 145 114"
345
+ ]
346
+ },
347
+ "execution_count": 162,
348
+ "metadata": {},
349
+ "output_type": "execute_result"
350
+ }
351
+ ],
352
+ "source": [
353
+ "criteria = 'correctness'\n",
354
+ "value_counts = df.groupby(['answering_model', 'dataset'])[criteria].value_counts().unstack().fillna(0)\n",
355
+ "\n",
356
+ "possible_values = [1, 2, 3, 4]\n",
357
+ "value_counts = value_counts.reindex(columns=possible_values, fill_value=0)\n",
358
+ "value_counts.sort_values(['answering_model', 'dataset'])"
359
+ ]
360
+ },
361
+ {
362
+ "cell_type": "code",
363
+ "execution_count": 7,
364
+ "id": "efb43372-1b7a-4712-8f39-d55d7d3c2609",
365
+ "metadata": {},
366
+ "outputs": [
367
+ {
368
+ "data": {
369
+ "image/png": "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IWtQYachkslkcHFxQWpq6m1P8SVqqmxsbO55EwARUUPCsFMNSqUSbdq04XuDiHDz0hVbdIioMWHYqSa5XM6HpxERETVC7IBCREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSZmrsAoiIiKh+paenIycnp9625+DgAA8Pj3rb3j8x7BARETUh6enp8PH1RWlJSb1t09zCAmfPnDFa4GHYISIiakJycnJQWlKCMTM/gJNH6zrfXlZ6CtYsnIGcnByGHSIiIqo/Th6t4damnbHLqBfsoExERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJJm1LDzxRdfICAgAGq1Gmq1GiEhIfjjjz8M08vKyhAREQF7e3tYWVlhxIgRyMrKqrKO9PR0DBkyBBYWFnB0dMSMGTNQWVlZ37tCREREDZRRw46bmxvee+89xMTE4Pjx4+jbty8effRRnD59GgDw0ksvYdOmTfj555+xb98+XL16FcOHDzcsr9PpMGTIEJSXl+PQoUP45ptvsHr1arz55pvG2iUiIiJqYEyNufGhQ4dW+fzOO+/giy++wOHDh+Hm5oaVK1di7dq16Nu3LwBg1apV8PX1xeHDh9GtWzfs2LEDiYmJ2LVrF5ycnNChQwe8/fbbmDlzJubOnQulUmmM3SIiIqIGpMH02dHpdFi3bh2Ki4sREhKCmJgY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yOVyjBgxAlqtFmFhYfj8888N85qYmGDz5s2YPHkyQkJCYGlpifDwcLz11lv1tRtERETUgBk17Nx6KOG9qFQqLF26FEuXLr3rPLee/UNERET0Tw3mbiwiIiKiusCwQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREREksawQ0RERJLGsENERESSxrBDREQGQghjl0BU60yNXQAREdWvCp0eV/NKcSWvFNcKtcgrrUCxthKVegEhAKWJHOZKE2jMFWhmbQZntQoedhZQmvL3Y2qcGHaIiJoAvRBIv16CM5kFSLlWDJ3+7i045To9ykv1yC+tQHpuCQDARCaDm505nGUyQM6vDmpceMYSEUmYTi9wJrMAMWk3kFdSYRhvZWYKN1tzuGhUsLFQQq0yhcJEDpkM0FbqUVKuQ25xObILy3AptxT5pRVIu16CNCjgNnkVfkksgne7Slia8WuEGj6epUREEiSEwIWcYhxIzkF+6c2QY2Yqh6+zGj4u1nC0NoNMJrvjshZKwNYCaG5jDkADIQRulFQgKbMQpy5dR5mVLdYmFGJb6l5E9PHCuJAWUJjwEhc1XDw7iYgkpqC0AhvjrmLzqQzkl1bAQmmCh7wc8GyPlujt3QxOatVdg86dyGQy2FkqEdLaHoNcK5Cz6UO4WJkgt7gcb29OxCOf/omjqbl1uEdED4YtO0REEiGEQMLVAhxIvoYK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VCoVZs6ciVdffRXffvstUlJScPjwYaxcuRJjxoyBSqVCeHg4EhISsHfvXkydOhVjx441XMKqiXnz5mHBggX49NNPce7cOcTHx2PVqlVYtGgRAGD06NFwdnbGsGHDcPDgQVy4cAG//voroqOjAQCenp5ITU1FXFwccnJyoNVqq7XdiIgI5ObmYvTo0Th27BhSUlKwfft2jB8/HjqdDkeOHMG7776L48ePIz09HevXr8e1a9fg6+uL1NRUzJo1C9HR0UhLS8OOHTuQnJwMX1/fGu8/Ed0HY3caIiJp0Ol0Yv78+aJFixZCoVAIDw8P8e677wohhDh16pTo06ePUKlUws7OTjz33HOisLDQsGx4eLh49NFHq6zvVgflEydO3LatNWvWiA4dOgilUilsbW1Fr169xPr16w3TL168KEaMGCHUarWwsLAQwcHB4siRI0IIIcrKysSIESOEjY2NACBWrVolhLjZQXnDhg1VtqPRaAzThRDi3Llz4rHHHhM2NjbC3Nxc+Pj4iMjISKHX60ViYqIICwsTzZo1E2ZmZqJt27ZiyZIlQgghMjMzxbBhw4SLi4tQKpWiRYsW4s033xQ6ne4+jzYR1YRMCCGMnLeIiIiI6gwvYxEREZGkMewQERGRpDHsEBERkaQx7BAREZGkMewQERGRpDHsEBERkaQx7BAREZGkMewQERGRpDHsEBERkaQx7BAREZGkMewQERGRpP0/n9yhV3WD1YsAAAAASUVORK5CYII=",
370
+ "text/plain": [
371
+ "<Figure size 640x480 with 1 Axes>"
372
+ ]
373
+ },
374
+ "metadata": {},
375
+ "output_type": "display_data"
376
+ }
377
+ ],
378
+ "source": [
379
+ "sns.histplot(data=df, x='correctness', hue='answering_model', multiple='dodge', kde=True);"
380
+ ]
381
+ },
382
+ {
383
+ "cell_type": "markdown",
384
+ "id": "4eb351ed-f6c7-4732-99bf-29b4a3da97c9",
385
+ "metadata": {},
386
+ "source": [
387
+ "## Number of evaluation failures"
388
+ ]
389
+ },
390
+ {
391
+ "cell_type": "code",
392
+ "execution_count": 8,
393
+ "id": "d220f663-0c2a-4a49-88e9-73dc8579e900",
394
+ "metadata": {},
395
+ "outputs": [
396
+ {
397
+ "name": "stdout",
398
+ "output_type": "stream",
399
+ "text": [
400
+ "Total failures: 0 out of 1035 (0.0%)\n"
401
+ ]
402
+ },
403
+ {
404
+ "data": {
405
+ "text/html": [
406
+ "<div>\n",
407
+ "<style scoped>\n",
408
+ " .dataframe tbody tr th:only-of-type {\n",
409
+ " vertical-align: middle;\n",
410
+ " }\n",
411
+ "\n",
412
+ " .dataframe tbody tr th {\n",
413
+ " vertical-align: top;\n",
414
+ " }\n",
415
+ "\n",
416
+ " .dataframe thead th {\n",
417
+ " text-align: right;\n",
418
+ " }\n",
419
+ "</style>\n",
420
+ "<table border=\"1\" class=\"dataframe\">\n",
421
+ " <thead>\n",
422
+ " <tr style=\"text-align: right;\">\n",
423
+ " <th></th>\n",
424
+ " <th>answering_model</th>\n",
425
+ " <th>final_prompt_for_answering_model</th>\n",
426
+ " <th>correctness</th>\n",
427
+ " <th>answer</th>\n",
428
+ " <th>llm_error</th>\n",
429
+ " <th>explanation</th>\n",
430
+ " </tr>\n",
431
+ " </thead>\n",
432
+ " <tbody>\n",
433
+ " </tbody>\n",
434
+ "</table>\n",
435
+ "</div>"
436
+ ],
437
+ "text/plain": [
438
+ "Empty DataFrame\n",
439
+ "Columns: [answering_model, final_prompt_for_answering_model, correctness, answer, llm_error, explanation]\n",
440
+ "Index: []"
441
+ ]
442
+ },
443
+ "execution_count": 8,
444
+ "metadata": {},
445
+ "output_type": "execute_result"
446
+ }
447
+ ],
448
+ "source": [
449
+ "# select relevant columns\n",
450
+ "cols = ['answering_model', 'final_prompt_for_answering_model', 'correctness', 'answer', 'llm_error', 'explanation']\n",
451
+ "_df = pd.concat(dfs)[cols]\n",
452
+ "\n",
453
+ "# apply filter\n",
454
+ "_df_failures = _df[pd.isna(_df['correctness'])]\n",
455
+ "\n",
456
+ "\n",
457
+ "print(f'Total failures: {len(_df_failures)} out of {len(_df)} ({round(len(_df_failures)/len(_df) * 100, 0)}%)')\n",
458
+ "\n",
459
+ "# show some examples, if any\n",
460
+ "_df_failures.head(3)"
461
+ ]
462
+ },
463
+ {
464
+ "cell_type": "markdown",
465
+ "id": "d1aa050c-5d34-4fa6-9c19-de96f6360bc1",
466
+ "metadata": {},
467
+ "source": [
468
+ "# Explore worst performers"
469
+ ]
470
+ },
471
+ {
472
+ "cell_type": "code",
473
+ "execution_count": 9,
474
+ "id": "a1037c2c-1adf-4f94-88f6-c135740b94d7",
475
+ "metadata": {},
476
+ "outputs": [
477
+ {
478
+ "data": {
479
+ "text/html": [
480
+ "<div>\n",
481
+ "<style scoped>\n",
482
+ " .dataframe tbody tr th:only-of-type {\n",
483
+ " vertical-align: middle;\n",
484
+ " }\n",
485
+ "\n",
486
+ " .dataframe tbody tr th {\n",
487
+ " vertical-align: top;\n",
488
+ " }\n",
489
+ "\n",
490
+ " .dataframe thead th {\n",
491
+ " text-align: right;\n",
492
+ " }\n",
493
+ "</style>\n",
494
+ "<table border=\"1\" class=\"dataframe\">\n",
495
+ " <thead>\n",
496
+ " <tr style=\"text-align: right;\">\n",
497
+ " <th></th>\n",
498
+ " <th>question</th>\n",
499
+ " <th>context</th>\n",
500
+ " <th>answering_model</th>\n",
501
+ " <th>answer</th>\n",
502
+ " <th>correctness</th>\n",
503
+ " <th>readability</th>\n",
504
+ " <th>comprehensiveness</th>\n",
505
+ " </tr>\n",
506
+ " </thead>\n",
507
+ " <tbody>\n",
508
+ " <tr>\n",
509
+ " <th>3</th>\n",
510
+ " <td>Explain this code</td>\n",
511
+ " <td>/// &lt;reference types=\"vitest\" /&gt;\\n/// &lt;reference types=\"vite/client\" /&gt;\\n\\nimport react from \"@vitejs/plugin-react\";\\nimport tsconfigPaths from \"vite-tsconfig-paths\";\\nimport { defineConfig } from \"vitest/config\";\\n\\nexport default defineConfig({\\n plugins: [react(), tsconfigPaths()],\\n test: {\\n globals: true,\\n environment: \"happy-dom\",\\n setupFiles: [\"./test/setup-test-env.ts\"],\\n },\\n});\\n</td>\n",
512
+ " <td>duo-chat with mistral</td>\n",
513
+ " <td>The provided code is a Vue.js application that uses the Vitest testing framework along with Vite for development setup. The main component being used is `MyEeComponent`, which is imported asynchronously using webpackChunkName. This is done to improve the performance of the application by only loading the necessary components when needed.\\n\\nThe code also includes a test suite for testing YAML files, specifically for positive and negative tests. The tests are written in Jest and use the `it.each` function to iterate over different test cases.\\n\\nIn addition, the code demonstrates the use of Vue Test Utils helpers such as `shallowMountExtended`, which allows for more efficient testing by providing functions like `wrapper.findByTestId()`. It also suggests avoiding using data or methods that extend component internals in tests.\\n\\nLastly, the code includes a note about eagerly importing large components to ensure they are transpiled and cached during testing. This is important because Jest may time out if it has to transpile large modules on-the-fly.\\n\\nThe testing levels for frontend development can be found in the `spec/frontend/` and `spec/features/` directories, with the main information located at the [Testing Levels page](testing_levels.md).</td>\n",
514
+ " <td>1</td>\n",
515
+ " <td>2</td>\n",
516
+ " <td>1</td>\n",
517
+ " </tr>\n",
518
+ " <tr>\n",
519
+ " <th>11</th>\n",
520
+ " <td>Explain this code</td>\n",
521
+ " <td>class WelcomeController &lt; ApplicationController\\n def index\\n end\\nend\\n</td>\n",
522
+ " <td>duo-chat with mistral</td>\n",
523
+ " <td>The code provided is a part of a Ruby on Rails application, specifically for a controller named `WelcomeController`. This controller doesn't define any methods, but it inherits from the ApplicationController. The method `after_sign_out_path_for` is being overridden in the `ApplicationController`, which determines the path to be redirected after signing out.\\n\\nThe code also provides best practices for event handling and database migration using Rails. For example, event classes should be defined and published within the same bounded context, and subscribers that depend on the event should exist in the same code where the dependent feature exists (CE or EE). Also, it suggests creating a database trigger to update a column after an insert or update operation.\\n\\nAs for the job class, it inherits from `BatchedMigrationJob` and is used to perform batch updates in the database. The migration adds a new function and trigger to the database to handle the updates.</td>\n",
524
+ " <td>1</td>\n",
525
+ " <td>3</td>\n",
526
+ " <td>1</td>\n",
527
+ " </tr>\n",
528
+ " <tr>\n",
529
+ " <th>15</th>\n",
530
+ " <td>Explain this code</td>\n",
531
+ " <td># README\\n\\nThis README would normally document whatever steps are necessary to get the\\napplication up and running.\\n\\nThings you may want to cover:\\n\\n* Ruby version\\n\\n* System dependencies\\n\\n* Configuration\\n\\n* Database creation\\n\\n* Database initialization\\n\\n* How to run the test suite\\n\\n* Services (job queues, cache servers, search engines, etc.)\\n\\n* Deployment instructions\\n\\n* ...\\n</td>\n",
532
+ " <td>duo-chat with mistral</td>\n",
533
+ " <td>The given text describes a testing setup for Go and Ruby projects in GitLab. The Go projects use the GOPATH to cache modules, and the Ruby projects are tested with multiple versions of Ruby (3.1, 3.2, etc.) and PostgreSQL (13, 14, 15, 16).\\n\\nThe text also provides instructions on how to create test data for a specific state using FactoryBot in Ruby. The state is defined in the `provider_states_for` block, and the test data creation steps are defined in the `set_up` block. The created test data can be used in the provider test by importing the state file.\\n\\nIn summary, this text provides a testing setup for Go and Ruby projects in GitLab that includes multiple versions of dependencies, instructions on how to create test data, and guidance on using the created test data in the provider test.</td>\n",
534
+ " <td>1</td>\n",
535
+ " <td>2</td>\n",
536
+ " <td>1</td>\n",
537
+ " </tr>\n",
538
+ " <tr>\n",
539
+ " <th>21</th>\n",
540
+ " <td>Explain this code</td>\n",
541
+ " <td>ENV['RAILS_ENV'] ||= 'test'\\nrequire_relative \"../config/environment\"\\nrequire \"rails/test_help\"\\n\\nclass ActiveSupport::TestCase\\n # Run tests in parallel with specified workers\\n parallelize(workers: :number_of_processors)\\n\\n # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.\\n fixtures :all\\n\\n # Add more helper methods to be used by all tests here...\\nend\\n</td>\n",
542
+ " <td>duo-chat with mistral</td>\n",
543
+ " <td>The text provided discusses the use of `rubocop_spec_helper` for RuboCop related specs and its performance benefits compared to `fast_spec_helper`. It also introduces a future feature called `setup:` that will enable efficient parallelization of jobs in tests. This is done by defining all steps required to provision the environment, distributing the results as the base for all parallel jobs if `parallel: N` is used, and running the `run:` and `teardown:` on top of cloned jobs.\\n\\nThe example provided demonstrates how this feature can be implemented using RSpec in a GitLab Runner context, specifically with Ruby 3.2 and Postgres and Redis services. The parallelization is set to run 10 jobs.\\n\\nAdditionally, the text includes instructions on running LDAP tests from the `gitlab/qa` directory and how to run these tests locally with TLS disabled.\\n\\nKEYWORDS: rubocop_spec_helper, fast_spec_helper, setup:, parallelization, RSpec, GitLab Runner, Kubernetes cluster, block volumes, LDAP tests, TLS</td>\n",
544
+ " <td>1</td>\n",
545
+ " <td>2</td>\n",
546
+ " <td>1</td>\n",
547
+ " </tr>\n",
548
+ " <tr>\n",
549
+ " <th>22</th>\n",
550
+ " <td>Explain this code</td>\n",
551
+ " <td>xcode_source = \"/Volumes/base_images/Xcode_13.4.1.xip\"\\nxcode_version = \"13.4.1\"\\nxcode_major_version = \"13\"</td>\n",
552
+ " <td>duo-chat with mistral</td>\n",
553
+ " <td>I'm sorry, I couldn't respond in time. Please try a more specific request or enter /clear to start a new chat.</td>\n",
554
+ " <td>1</td>\n",
555
+ " <td>1</td>\n",
556
+ " <td>1</td>\n",
557
+ " </tr>\n",
558
+ " <tr>\n",
559
+ " <th>...</th>\n",
560
+ " <td>...</td>\n",
561
+ " <td>...</td>\n",
562
+ " <td>...</td>\n",
563
+ " <td>...</td>\n",
564
+ " <td>...</td>\n",
565
+ " <td>...</td>\n",
566
+ " <td>...</td>\n",
567
+ " </tr>\n",
568
+ " <tr>\n",
569
+ " <th>315</th>\n",
570
+ " <td>Explain this code</td>\n",
571
+ " <td>---\\nname: Bug report\\nabout: Create a report to help us improve\\ntitle: \"[BUG]\"\\nlabels: bug\\nassignees: ''\\n\\n---\\n\\n## Summary\\n&gt; Write the actual behavior and the purpose to modify.\\n\\n## Cause\\n&gt; Why such a problem happened?\\n\\n### To reproduce\\nPerform the follwing steps to reproduce the problem.\\n\\n1. …\\n1. …\\n\\n## Expected behavior\\nExpected the follwing behavior.\\n\\n## How to deal with this issue\\n&gt; How do you fix it?\\n\\n## Notes\\n</td>\n",
572
+ " <td>duo-chat with mistral</td>\n",
573
+ " <td>To report abuse on GitLab, follow these steps:\\n\\n1. If you're reporting a user from a merge request, navigate to the merge request, select \"Merge request actions\" (ellipsis_v) in the upper-right corner, and then select \"Report abuse\". For regular users, go to their profile page and select \"Report abuse\" in the dropdown menu.\\n2. Select a reason for reporting the user.\\n3. Complete an abuse report.\\n4. Send the report by selecting \"Send report\".\\n\\nTo log errors in GitLab, use the `logError` function from the `~/lib/logger` module. Import it and pass the actual `Error` object to it. This will help capture the stack trace and other details for analysis.\\n\\nClient-side logging is related to Frontend Observability, which aims to quickly react to user-facing issues by monitoring systems. However, not every log needs to be sent to the monitoring system, so consider controlling which messages passed to `~/lib/logger` are actually sent to the monitoring systems.</td>\n",
574
+ " <td>1</td>\n",
575
+ " <td>2</td>\n",
576
+ " <td>1</td>\n",
577
+ " </tr>\n",
578
+ " <tr>\n",
579
+ " <th>327</th>\n",
580
+ " <td>Explain this code</td>\n",
581
+ " <td>&lt;?php\\n\\nnamespace Tests\\Feature;\\n\\n// use Illuminate\\Foundation\\Testing\\RefreshDatabase;\\nuse Tests\\TestCase;\\n\\nclass ExampleTest extends TestCase\\n{\\n /**\\n * A basic test example.\\n */\\n public function test_the_application_returns_a_successful_response(): void\\n {\\n $response = $this-&gt;get('/');\\n\\n $response-&gt;assertStatus(200);\\n }\\n}\\n</td>\n",
582
+ " <td>duo-chat with mistral</td>\n",
583
+ " <td>The provided code snippet is an HTML structure for integrating Google's reCAPTCHA into a webpage. The text following the quote sections provides instructions on how to set up and test various scenarios of the Spam and CAPTCHA behavior using different testing tools like atoum, Composer, and Vue Test Utils with examples.\\n\\nIt also suggests best practices for writing unit tests, such as avoiding using Vue template refs to query DOM elements in tests, querying child components instead of DOM nodes when testing Vue components, naming unit tests using the method name being tested, and handling Promises correctly in tests.</td>\n",
584
+ " <td>1</td>\n",
585
+ " <td>2</td>\n",
586
+ " <td>1</td>\n",
587
+ " </tr>\n",
588
+ " <tr>\n",
589
+ " <th>329</th>\n",
590
+ " <td>Explain this code</td>\n",
591
+ " <td>describe('gitlab.logging', function()\\n local logging = require('gitlab.logging')\\n\\n before_each(function()\\n GITLAB_VIM = { version = \"0.0.0\" }\\n end)\\n\\n describe('format_line', function()\\n it('returns a line with timestamp, level, version and msg', function()\\n assert.are.equal(\"1234-56-78 12:34:56: INFO (0.0.0): test\", logging.format_line('test',\\n 'INFO', \"1234-56-78 12:34:56\"))\\n end)\\n end)\\nend)\\n</td>\n",
592
+ " <td>duo-chat with mistral</td>\n",
593
+ " <td>I'm sorry, I couldn't respond in time. Please try a more specific request or enter /clear to start a new chat.</td>\n",
594
+ " <td>1</td>\n",
595
+ " <td>1</td>\n",
596
+ " <td>1</td>\n",
597
+ " </tr>\n",
598
+ " <tr>\n",
599
+ " <th>333</th>\n",
600
+ " <td>Explain this code</td>\n",
601
+ " <td>&lt;IfModule mod_rewrite.c&gt;\\n &lt;IfModule mod_negotiation.c&gt;\\n Options -MultiViews -Indexes\\n &lt;/IfModule&gt;\\n\\n RewriteEngine On\\n\\n # Handle Authorization Header\\n RewriteCond %{HTTP:Authorization} .\\n RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]\\n\\n # Redirect Trailing Slashes If Not A Folder...\\n RewriteCond %{REQUEST_FILENAME} !-d\\n RewriteCond %{REQUEST_URI} (.+)/$\\n RewriteRule ^ %1 [L,R=301]\\n\\n # Send Requests To Front Controller...\\n RewriteCond %{REQUEST_FILENAME} !-d\\n RewriteCond %{REQUEST_FILENAME} !-f\\n RewriteRule ^ index.php [L]\\n&lt;/IfModule&gt;\\n</td>\n",
602
+ " <td>duo-chat with mistral</td>\n",
603
+ " <td>The provided text discusses several security vulnerabilities found in a system, along with their severity level (Low or High) and the type of attack (Passive). It also provides examples of well-implemented access controls. Additionally, it offers guidelines for using Regular Expressions, particularly noting that Ruby's Regular Expression engine matches multi-line by default. The text also suggests always passing string literals to translation helpers and refers to a Mozilla Developer documentation link for best practices in localization.\\n\\nThe text seems to be related to code review or security auditing of software applications, particularly web applications built with Ruby on Rails or JavaScript (Vue). It emphasizes the importance of returning appropriate HTTP status codes when an authorization check fails and suggests using generic messages like \"access denied\" instead of revealing specific information.\\n\\nThe text also provides examples of well-implemented access controls in GitLab, a popular web-based DevOps platform, and suggests following best practices for splitting and composing sentences in localization to ensure accurate translations.\\n\\nRegarding the Regular Expressions guidelines, it is important to note that unlike other programming languages, such as Perl or Python, Regular Expressions are matching multi-line by default in Ruby. This means that when using Regular Expressions in JavaScript (when Vue cannot be used), it is recommended to set link starting and ending HTML fragments as placeholders for proper localization.\\n\\nLastly, the text refers to a GitLab Merge Request IDs (710, 2511, 3170) as examples of well-implemented access controls. It also mentions a script called `tooling/bin/gettext_extractor locale/gitlab.pot` that parses the codebase and extracts all the strings from the application for localization purposes.</td>\n",
604
+ " <td>1</td>\n",
605
+ " <td>2</td>\n",
606
+ " <td>1</td>\n",
607
+ " </tr>\n",
608
+ " <tr>\n",
609
+ " <th>336</th>\n",
610
+ " <td>Explain this code</td>\n",
611
+ " <td>module ApplicationHelper\\nend\\n</td>\n",
612
+ " <td>duo-chat with mistral</td>\n",
613
+ " <td>To disable a Rubocop rule, you can add the comment `# rubocop:disable [RuleName]` right after the code where the violation occurs. If there are multiple lines of code that violate the rule, you can enable and disable it for specific sections using the comments. Here's an example:\\n\\n```ruby\\nmodule M\\n # rubocop:disable Gitlab/ModuleWithInstanceVariables\\n def violating_method\\n @f = 0\\n @g = 1\\n @h = 2\\n end\\n # rubocop:enable Gitlab/ModuleWithInstanceVariables\\nend\\n```\\n\\nIn the context of GitLab, instance variables in views are discouraged because they make it difficult to track data dependency. Instead, use something like this:\\n\\n```haml\\n= render 'projects/commits/commit', commit: commit, ref: ref, project: project\\n```\\n\\nAnd in the partial:\\n\\n```haml\\n- ref = local_assigns.fetch(:ref)\\n- commit = local_assigns.fetch(:commit)\\n- project = local_assigns.fetch(:project)\\n```\\n\\nWhen writing code in `lib/`, place EE-specific logic in the top-level `EE` module namespace, and namespace the class beneath the `EE` module as usual. For example:\\n\\n```ruby\\n# If CE has LDAP classes in lib/gitlab/ldap/\\n# Then you would place EE-specific LDAP classes in ee/lib/ee/gitlab/ldap\\n```\\n\\nFor EE API routes, put them in a `prepended` block:\\n\\n```ruby\\nmodule EE\\n module API\\n module MergeRequests\\n extend ActiveSupport::Concern\\n\\n prepended do\\n params do\\n requires :id, types: [String, Integer], desc: 'The ID or URL-encoded path of the project'\\n end\\n resource :projects, requirements: ::API::API::NAMESPACE_OR_PROJECT_REQUIREMENTS do\\n # ...\\n end\\n end\\n end\\n end\\nend\\n```\\n\\nWhen extending EE features in API, use `extend ActiveSupport::Concern` and put the EE module files following the guidelines for Extending CE features with EE backend code.</td>\n",
614
+ " <td>1</td>\n",
615
+ " <td>1</td>\n",
616
+ " <td>1</td>\n",
617
+ " </tr>\n",
618
+ " </tbody>\n",
619
+ "</table>\n",
620
+ "<p>258 rows × 7 columns</p>\n",
621
+ "</div>"
622
+ ],
623
+ "text/plain": [
624
+ " question \\\n",
625
+ "3 Explain this code \n",
626
+ "11 Explain this code \n",
627
+ "15 Explain this code \n",
628
+ "21 Explain this code \n",
629
+ "22 Explain this code \n",
630
+ ".. ... \n",
631
+ "315 Explain this code \n",
632
+ "327 Explain this code \n",
633
+ "329 Explain this code \n",
634
+ "333 Explain this code \n",
635
+ "336 Explain this code \n",
636
+ "\n",
637
+ " context \\\n",
638
+ "3 /// <reference types=\"vitest\" />\\n/// <reference types=\"vite/client\" />\\n\\nimport react from \"@vitejs/plugin-react\";\\nimport tsconfigPaths from \"vite-tsconfig-paths\";\\nimport { defineConfig } from \"vitest/config\";\\n\\nexport default defineConfig({\\n plugins: [react(), tsconfigPaths()],\\n test: {\\n globals: true,\\n environment: \"happy-dom\",\\n setupFiles: [\"./test/setup-test-env.ts\"],\\n },\\n});\\n \n",
639
+ "11 class WelcomeController < ApplicationController\\n def index\\n end\\nend\\n \n",
640
+ "15 # README\\n\\nThis README would normally document whatever steps are necessary to get the\\napplication up and running.\\n\\nThings you may want to cover:\\n\\n* Ruby version\\n\\n* System dependencies\\n\\n* Configuration\\n\\n* Database creation\\n\\n* Database initialization\\n\\n* How to run the test suite\\n\\n* Services (job queues, cache servers, search engines, etc.)\\n\\n* Deployment instructions\\n\\n* ...\\n \n",
641
+ "21 ENV['RAILS_ENV'] ||= 'test'\\nrequire_relative \"../config/environment\"\\nrequire \"rails/test_help\"\\n\\nclass ActiveSupport::TestCase\\n # Run tests in parallel with specified workers\\n parallelize(workers: :number_of_processors)\\n\\n # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.\\n fixtures :all\\n\\n # Add more helper methods to be used by all tests here...\\nend\\n \n",
642
+ "22 xcode_source = \"/Volumes/base_images/Xcode_13.4.1.xip\"\\nxcode_version = \"13.4.1\"\\nxcode_major_version = \"13\" \n",
643
+ ".. ... \n",
644
+ "315 ---\\nname: Bug report\\nabout: Create a report to help us improve\\ntitle: \"[BUG]\"\\nlabels: bug\\nassignees: ''\\n\\n---\\n\\n## Summary\\n> Write the actual behavior and the purpose to modify.\\n\\n## Cause\\n> Why such a problem happened?\\n\\n### To reproduce\\nPerform the follwing steps to reproduce the problem.\\n\\n1. …\\n1. …\\n\\n## Expected behavior\\nExpected the follwing behavior.\\n\\n## How to deal with this issue\\n> How do you fix it?\\n\\n## Notes\\n \n",
645
+ "327 <?php\\n\\nnamespace Tests\\Feature;\\n\\n// use Illuminate\\Foundation\\Testing\\RefreshDatabase;\\nuse Tests\\TestCase;\\n\\nclass ExampleTest extends TestCase\\n{\\n /**\\n * A basic test example.\\n */\\n public function test_the_application_returns_a_successful_response(): void\\n {\\n $response = $this->get('/');\\n\\n $response->assertStatus(200);\\n }\\n}\\n \n",
646
+ "329 describe('gitlab.logging', function()\\n local logging = require('gitlab.logging')\\n\\n before_each(function()\\n GITLAB_VIM = { version = \"0.0.0\" }\\n end)\\n\\n describe('format_line', function()\\n it('returns a line with timestamp, level, version and msg', function()\\n assert.are.equal(\"1234-56-78 12:34:56: INFO (0.0.0): test\", logging.format_line('test',\\n 'INFO', \"1234-56-78 12:34:56\"))\\n end)\\n end)\\nend)\\n \n",
647
+ "333 <IfModule mod_rewrite.c>\\n <IfModule mod_negotiation.c>\\n Options -MultiViews -Indexes\\n </IfModule>\\n\\n RewriteEngine On\\n\\n # Handle Authorization Header\\n RewriteCond %{HTTP:Authorization} .\\n RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]\\n\\n # Redirect Trailing Slashes If Not A Folder...\\n RewriteCond %{REQUEST_FILENAME} !-d\\n RewriteCond %{REQUEST_URI} (.+)/$\\n RewriteRule ^ %1 [L,R=301]\\n\\n # Send Requests To Front Controller...\\n RewriteCond %{REQUEST_FILENAME} !-d\\n RewriteCond %{REQUEST_FILENAME} !-f\\n RewriteRule ^ index.php [L]\\n</IfModule>\\n \n",
648
+ "336 module ApplicationHelper\\nend\\n \n",
649
+ "\n",
650
+ " answering_model \\\n",
651
+ "3 duo-chat with mistral \n",
652
+ "11 duo-chat with mistral \n",
653
+ "15 duo-chat with mistral \n",
654
+ "21 duo-chat with mistral \n",
655
+ "22 duo-chat with mistral \n",
656
+ ".. ... \n",
657
+ "315 duo-chat with mistral \n",
658
+ "327 duo-chat with mistral \n",
659
+ "329 duo-chat with mistral \n",
660
+ "333 duo-chat with mistral \n",
661
+ "336 duo-chat with mistral \n",
662
+ "\n",
663
+ " answer \\\n",
664
+ "3 The provided code is a Vue.js application that uses the Vitest testing framework along with Vite for development setup. The main component being used is `MyEeComponent`, which is imported asynchronously using webpackChunkName. This is done to improve the performance of the application by only loading the necessary components when needed.\\n\\nThe code also includes a test suite for testing YAML files, specifically for positive and negative tests. The tests are written in Jest and use the `it.each` function to iterate over different test cases.\\n\\nIn addition, the code demonstrates the use of Vue Test Utils helpers such as `shallowMountExtended`, which allows for more efficient testing by providing functions like `wrapper.findByTestId()`. It also suggests avoiding using data or methods that extend component internals in tests.\\n\\nLastly, the code includes a note about eagerly importing large components to ensure they are transpiled and cached during testing. This is important because Jest may time out if it has to transpile large modules on-the-fly.\\n\\nThe testing levels for frontend development can be found in the `spec/frontend/` and `spec/features/` directories, with the main information located at the [Testing Levels page](testing_levels.md). \n",
665
+ "11 The code provided is a part of a Ruby on Rails application, specifically for a controller named `WelcomeController`. This controller doesn't define any methods, but it inherits from the ApplicationController. The method `after_sign_out_path_for` is being overridden in the `ApplicationController`, which determines the path to be redirected after signing out.\\n\\nThe code also provides best practices for event handling and database migration using Rails. For example, event classes should be defined and published within the same bounded context, and subscribers that depend on the event should exist in the same code where the dependent feature exists (CE or EE). Also, it suggests creating a database trigger to update a column after an insert or update operation.\\n\\nAs for the job class, it inherits from `BatchedMigrationJob` and is used to perform batch updates in the database. The migration adds a new function and trigger to the database to handle the updates. \n",
666
+ "15 The given text describes a testing setup for Go and Ruby projects in GitLab. The Go projects use the GOPATH to cache modules, and the Ruby projects are tested with multiple versions of Ruby (3.1, 3.2, etc.) and PostgreSQL (13, 14, 15, 16).\\n\\nThe text also provides instructions on how to create test data for a specific state using FactoryBot in Ruby. The state is defined in the `provider_states_for` block, and the test data creation steps are defined in the `set_up` block. The created test data can be used in the provider test by importing the state file.\\n\\nIn summary, this text provides a testing setup for Go and Ruby projects in GitLab that includes multiple versions of dependencies, instructions on how to create test data, and guidance on using the created test data in the provider test. \n",
667
+ "21 The text provided discusses the use of `rubocop_spec_helper` for RuboCop related specs and its performance benefits compared to `fast_spec_helper`. It also introduces a future feature called `setup:` that will enable efficient parallelization of jobs in tests. This is done by defining all steps required to provision the environment, distributing the results as the base for all parallel jobs if `parallel: N` is used, and running the `run:` and `teardown:` on top of cloned jobs.\\n\\nThe example provided demonstrates how this feature can be implemented using RSpec in a GitLab Runner context, specifically with Ruby 3.2 and Postgres and Redis services. The parallelization is set to run 10 jobs.\\n\\nAdditionally, the text includes instructions on running LDAP tests from the `gitlab/qa` directory and how to run these tests locally with TLS disabled.\\n\\nKEYWORDS: rubocop_spec_helper, fast_spec_helper, setup:, parallelization, RSpec, GitLab Runner, Kubernetes cluster, block volumes, LDAP tests, TLS \n",
668
+ "22 I'm sorry, I couldn't respond in time. Please try a more specific request or enter /clear to start a new chat. \n",
669
+ ".. ... \n",
670
+ "315 To report abuse on GitLab, follow these steps:\\n\\n1. If you're reporting a user from a merge request, navigate to the merge request, select \"Merge request actions\" (ellipsis_v) in the upper-right corner, and then select \"Report abuse\". For regular users, go to their profile page and select \"Report abuse\" in the dropdown menu.\\n2. Select a reason for reporting the user.\\n3. Complete an abuse report.\\n4. Send the report by selecting \"Send report\".\\n\\nTo log errors in GitLab, use the `logError` function from the `~/lib/logger` module. Import it and pass the actual `Error` object to it. This will help capture the stack trace and other details for analysis.\\n\\nClient-side logging is related to Frontend Observability, which aims to quickly react to user-facing issues by monitoring systems. However, not every log needs to be sent to the monitoring system, so consider controlling which messages passed to `~/lib/logger` are actually sent to the monitoring systems. \n",
671
+ "327 The provided code snippet is an HTML structure for integrating Google's reCAPTCHA into a webpage. The text following the quote sections provides instructions on how to set up and test various scenarios of the Spam and CAPTCHA behavior using different testing tools like atoum, Composer, and Vue Test Utils with examples.\\n\\nIt also suggests best practices for writing unit tests, such as avoiding using Vue template refs to query DOM elements in tests, querying child components instead of DOM nodes when testing Vue components, naming unit tests using the method name being tested, and handling Promises correctly in tests. \n",
672
+ "329 I'm sorry, I couldn't respond in time. Please try a more specific request or enter /clear to start a new chat. \n",
673
+ "333 The provided text discusses several security vulnerabilities found in a system, along with their severity level (Low or High) and the type of attack (Passive). It also provides examples of well-implemented access controls. Additionally, it offers guidelines for using Regular Expressions, particularly noting that Ruby's Regular Expression engine matches multi-line by default. The text also suggests always passing string literals to translation helpers and refers to a Mozilla Developer documentation link for best practices in localization.\\n\\nThe text seems to be related to code review or security auditing of software applications, particularly web applications built with Ruby on Rails or JavaScript (Vue). It emphasizes the importance of returning appropriate HTTP status codes when an authorization check fails and suggests using generic messages like \"access denied\" instead of revealing specific information.\\n\\nThe text also provides examples of well-implemented access controls in GitLab, a popular web-based DevOps platform, and suggests following best practices for splitting and composing sentences in localization to ensure accurate translations.\\n\\nRegarding the Regular Expressions guidelines, it is important to note that unlike other programming languages, such as Perl or Python, Regular Expressions are matching multi-line by default in Ruby. This means that when using Regular Expressions in JavaScript (when Vue cannot be used), it is recommended to set link starting and ending HTML fragments as placeholders for proper localization.\\n\\nLastly, the text refers to a GitLab Merge Request IDs (710, 2511, 3170) as examples of well-implemented access controls. It also mentions a script called `tooling/bin/gettext_extractor locale/gitlab.pot` that parses the codebase and extracts all the strings from the application for localization purposes. \n",
674
+ "336 To disable a Rubocop rule, you can add the comment `# rubocop:disable [RuleName]` right after the code where the violation occurs. If there are multiple lines of code that violate the rule, you can enable and disable it for specific sections using the comments. Here's an example:\\n\\n```ruby\\nmodule M\\n # rubocop:disable Gitlab/ModuleWithInstanceVariables\\n def violating_method\\n @f = 0\\n @g = 1\\n @h = 2\\n end\\n # rubocop:enable Gitlab/ModuleWithInstanceVariables\\nend\\n```\\n\\nIn the context of GitLab, instance variables in views are discouraged because they make it difficult to track data dependency. Instead, use something like this:\\n\\n```haml\\n= render 'projects/commits/commit', commit: commit, ref: ref, project: project\\n```\\n\\nAnd in the partial:\\n\\n```haml\\n- ref = local_assigns.fetch(:ref)\\n- commit = local_assigns.fetch(:commit)\\n- project = local_assigns.fetch(:project)\\n```\\n\\nWhen writing code in `lib/`, place EE-specific logic in the top-level `EE` module namespace, and namespace the class beneath the `EE` module as usual. For example:\\n\\n```ruby\\n# If CE has LDAP classes in lib/gitlab/ldap/\\n# Then you would place EE-specific LDAP classes in ee/lib/ee/gitlab/ldap\\n```\\n\\nFor EE API routes, put them in a `prepended` block:\\n\\n```ruby\\nmodule EE\\n module API\\n module MergeRequests\\n extend ActiveSupport::Concern\\n\\n prepended do\\n params do\\n requires :id, types: [String, Integer], desc: 'The ID or URL-encoded path of the project'\\n end\\n resource :projects, requirements: ::API::API::NAMESPACE_OR_PROJECT_REQUIREMENTS do\\n # ...\\n end\\n end\\n end\\n end\\nend\\n```\\n\\nWhen extending EE features in API, use `extend ActiveSupport::Concern` and put the EE module files following the guidelines for Extending CE features with EE backend code. \n",
675
+ "\n",
676
+ " correctness readability comprehensiveness \n",
677
+ "3 1 2 1 \n",
678
+ "11 1 3 1 \n",
679
+ "15 1 2 1 \n",
680
+ "21 1 2 1 \n",
681
+ "22 1 1 1 \n",
682
+ ".. ... ... ... \n",
683
+ "315 1 2 1 \n",
684
+ "327 1 2 1 \n",
685
+ "329 1 1 1 \n",
686
+ "333 1 2 1 \n",
687
+ "336 1 1 1 \n",
688
+ "\n",
689
+ "[258 rows x 7 columns]"
690
+ ]
691
+ },
692
+ "execution_count": 9,
693
+ "metadata": {},
694
+ "output_type": "execute_result"
695
+ }
696
+ ],
697
+ "source": [
698
+ "df[df[\"correctness\"] <= 1][[\"question\", \"context\", \"answering_model\", \"answer\", \"correctness\", \"readability\", \"comprehensiveness\"]]"
699
+ ]
700
+ }
701
+ ],
702
+ "metadata": {
703
+ "kernelspec": {
704
+ "display_name": "Python 3 (ipykernel)",
705
+ "language": "python",
706
+ "name": "python3"
707
+ },
708
+ "language_info": {
709
+ "codemirror_mode": {
710
+ "name": "ipython",
711
+ "version": 3
712
+ },
713
+ "file_extension": ".py",
714
+ "mimetype": "text/x-python",
715
+ "name": "python",
716
+ "nbconvert_exporter": "python",
717
+ "pygments_lexer": "ipython3",
718
+ "version": "3.10.14"
719
+ }
720
+ },
721
+ "nbformat": 4,
722
+ "nbformat_minor": 5
723
+ }