File size: 11,050 Bytes
9d208d5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
Evaluation Results for model: oracle
Timestamp: 20240912_155859

Average Scores:
bleu: 1.0000
rouge-1: 1.0000
rouge-2: 1.0000
rouge-l: 1.0000
cosine_similarity: 1.0000
structural_similarity: 0.9824
information_retrieval: 0.5900
code_consistency: 0.1101
readability: 0.1484
weighted_score: 0.5679

Detailed Results:

Repository: labelme
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.9342
  Information Retrieval: 0.6000
  Code Consistency: 0.0319
  Readability: 0.0160
  Weighted Score: 0.5230

Repository: gpt-engineer
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.8000
  Code Consistency: 0.0887
  Readability: 0.2474
  Weighted Score: 0.6272

Repository: ChatGLM-6B
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.9643
  Information Retrieval: 0.8000
  Code Consistency: 0.0928
  Readability: 0.1168
  Weighted Score: 0.5983

Repository: SMSBoom
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.4000
  Code Consistency: 0.1111
  Readability: 0.6396
  Weighted Score: 0.6301

Repository: mackup
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.9615
  Information Retrieval: 0.8000
  Code Consistency: 0.2222
  Readability: -0.9157
  Weighted Score: 0.4175

Repository: TaskMatrix
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.8000
  Code Consistency: 0.3247
  Readability: 0.1425
  Weighted Score: 0.6534

Repository: Deep-Live-Cam
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.8000
  Code Consistency: 0.0215
  Readability: 0.4217
  Weighted Score: 0.6486

Repository: python-fire
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.8000
  Code Consistency: 0.0232
  Readability: 0.4380
  Weighted Score: 0.6522

Repository: devika
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.6000
  Code Consistency: 0.0865
  Readability: 0.4197
  Weighted Score: 0.6212

Repository: gpt-pilot
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.4000
  Code Consistency: 0.0624
  Readability: 0.5012
  Weighted Score: 0.5927

Repository: Depix
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.6000
  Code Consistency: 0.0000
  Readability: 0.3615
  Weighted Score: 0.5923

Repository: Real-Time-Voice-Cloning
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.0000
  Code Consistency: 0.0564
  Readability: 0.3402
  Weighted Score: 0.4793

Repository: httpx
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 1.0000
  Code Consistency: 0.0734
  Readability: 0.2085
  Weighted Score: 0.6564

Repository: chatgpt-mirai-qq-bot
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.4000
  Code Consistency: 0.0340
  Readability: -0.2278
  Weighted Score: 0.4412

Repository: gpt-researcher
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 1.0000
  Code Consistency: 0.0776
  Readability: 0.0701
  Weighted Score: 0.6295

Repository: mkdocs
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.2000
  Code Consistency: 0.0301
  Readability: 0.1963
  Weighted Score: 0.4853

Repository: face_recognition
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.9884
  Information Retrieval: 0.8000
  Code Consistency: 0.2727
  Readability: 0.0823
  Weighted Score: 0.6298

Repository: system-design-primer
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.9595
  Information Retrieval: 1.0000
  Code Consistency: 0.1290
  Readability: 0.1578
  Weighted Score: 0.6533

Repository: GPT_API_free
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.4000
  Code Consistency: 0.0000
  Readability: -0.7753
  Weighted Score: 0.3249

Repository: 30-Days-Of-Python
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.4000
  Code Consistency: 0.4615
  Readability: 0.5144
  Weighted Score: 0.6752

Repository: ChatPaper
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.9818
  Information Retrieval: 0.2000
  Code Consistency: 0.0789
  Readability: 0.2698
  Weighted Score: 0.5079

Repository: twint
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.6000
  Code Consistency: 0.2328
  Readability: 0.4258
  Weighted Score: 0.6517

Repository: flask
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.2000
  Code Consistency: 0.0592
  Readability: 0.5175
  Weighted Score: 0.5553

Repository: professional-programming
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.6000
  Code Consistency: 0.0000
  Readability: 0.0139
  Weighted Score: 0.5228

Repository: EIPs
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.2000
  Code Consistency: 0.0178
  Readability: 0.3523
  Weighted Score: 0.5140

Repository: grok-1
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.4000
  Code Consistency: 0.0361
  Readability: 0.3497
  Weighted Score: 0.5572

Repository: PyTorch-GAN
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.6541
  Information Retrieval: 0.4000
  Code Consistency: 0.0959
  Readability: 0.1764
  Weighted Score: 0.4999

Repository: public-apis
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.8000
  Code Consistency: 0.0476
  Readability: 0.0904
  Weighted Score: 0.5876

Repository: hackingtool
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.6000
  Code Consistency: 0.4118
  Readability: -0.8108
  Weighted Score: 0.4402

Repository: cascadia-code
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.4000
  Code Consistency: 0.0000
  Readability: 0.1537
  Weighted Score: 0.5107

Repository: python-cheatsheet
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.9621
  Information Retrieval: 0.6000
  Code Consistency: 0.3529
  Readability: 0.5418
  Weighted Score: 0.6952

Repository: rembg
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 1.0000
  Code Consistency: 0.1043
  Readability: -0.1482
  Weighted Score: 0.5912

Repository: devops-exercises
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.8000
  Code Consistency: 0.1667
  Readability: 0.3750
  Weighted Score: 0.6683

Repository: AutoEq
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.9286
  Information Retrieval: 0.6000
  Code Consistency: 0.0847
  Readability: 0.3544
  Weighted Score: 0.6007

Repository: MiniGPT-4
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.6000
  Code Consistency: 0.0376
  Readability: 0.0129
  Weighted Score: 0.5301

Repository: python-spider
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.0000
  Code Consistency: 0.0394
  Readability: -0.6765
  Weighted Score: 0.2726

Repository: chatgpt-retrieval-plugin
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.6000
  Code Consistency: 0.1274
  Readability: 0.2986
  Weighted Score: 0.6052

Repository: flux
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.8000
  Code Consistency: 0.1818
  Readability: 0.3513
  Weighted Score: 0.6666

Repository: pyright
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 1.0000
  Information Retrieval: 0.6000
  Code Consistency: 0.0000
  Readability: 0.1740
  Weighted Score: 0.5548

Repository: system-design-primer
Scores:
  BLEU: 1.0000
  ROUGE-1: 1.0000
  ROUGE-2: 1.0000
  ROUGE-L: 1.0000
  Cosine Similarity: 1.0000
  Structural Similarity: 0.9595
  Information Retrieval: 1.0000
  Code Consistency: 0.1290
  Readability: 0.1578
  Weighted Score: 0.6533