-
Notifications
You must be signed in to change notification settings - Fork 382
/
model_cards.json
3058 lines (3058 loc) · 331 KB
/
model_cards.json
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
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"t5-vicuna-3b": {
"category": "<10B",
"display_name": "T5 Vicuna",
"thumb": "https://i.ibb.co/4W7n78b/chansung-vector-logo-of-collective-intelligence-of-cute-llamas-3ef46884-72e6-44da-b88a-e831e5fee747.png",
"thumb-mid": "https://i.ibb.co/zZzSkQT/t5-vicuna-mid.png",
"thumb-tiny": "https://i.ibb.co/xhpY41G/t5-vicuna-tiny.png",
"parameters": "3",
"vram(full)": "7830",
"vram(8bit)": "5224",
"vram(4bit)": "4324",
"vram(gptq)": "N/A",
"hub(base)": "lmsys/fastchat-t5-3b-v1.0",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/t5_vicuna.yaml",
"desc": "This model is based on [Flan-T5-XL](https://huggingface.co/google/flan-t5-xl) from google, and it is fine-tuned on [ShareGPT](https://sharegpt.com/) dataset curated by [LMSYS](https://lmsys.org/) in [Vicuna style](https://github.com/lm-sys/FastChat)",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Sure, here's a travel blog post about a recent trip to Hawaii:\nHawaii has been on my mind for the past few months. I've finally had the opportunity to visit the island paradise and have come to terms with how much I love it. Here are a few highlights from my stay:\n\n1. Culture of Hawaii: From ancient Polynesian artifacts and traditional Hawaiian cuisine to colorful luaus and breathtaking sunsets, Hawaii is rich in cultural experiences. In addition to its vibrant culture, Hawaii is also known for its diverse landscapes and stunning natural beauty.\n2. Must-See Attractions: One of my favorite attractions in Hawaii was the historic Honolulu city, which is located in the heart of Honolulu. The city is famous for its beautiful beaches and lush foliage, as well as its beautiful architecture and historical landmarks.\n3. Cultural Experiences: When in Hawaii, you can't go wrong visiting local cultural events such as luaus and luau parties. These events are full of fun and excitement, and they provide a glimpse into the local way of life.\n4. Nature Activities: Hawaii has so much to offer, from hiking the majestic Maui mountains to kayaking down the Pacific Ocean. There are plenty of opportunities to get out and explore nature in this tropical paradise.\n5. Weather Conditions: Hawaii often sees rainy days and warm temperatures, making it a great time to visit the islands. However, with careful planning, you can still enjoy the beach and explore some of the best sights in Hawaii.\n6. Food and Drink:If you want to experience something a little more adventurous, consider spending a day surfing or playing golf at one of the many popular beaches on the islands.\n7. Overall, Hawaii is a truly unique place that has so much to offer visitors. With its diverse cultures, stunning natural beauty, and delicious food and drinks, there's no shortage of reasons to visit again and again."
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Sure, I'd be happy to help. Here's a sample resignation letter that you could use as a starting point:\nDear [Employer's Name],\nMy name is [Your Name] and I am writing to express my gratitude for the opportunities provided by your company during my time here. I have thoroughly enjoyed working for [Company] and would like to take this opportunity to thank you for the support and guidance I have received throughout my career.\nI will be taking a leave of absence from [Title of Employment], effective immediately. I appreciate all the hard work I have put in and look forward to spending more time with [Children].\nThank you again for providing me with the opportunity to grow professionally and for the valuable experiences I have gained throughout my time here. I appreciate your willingness to accommodate my personal schedule, and I wish you and [Your Company's Name] all the best in the future.\nSincerely,\n[Your Name]"
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"Sure, I'd be happy to help. Here's a sample resignation letter that you could use as a starting point:\nDear [Employer's Name],\nMy name is [Your Name] and I am writing to express my gratitude for the opportunities provided by your company during my time here. I have thoroughly enjoyed working for [Company] and would like to take this opportunity to thank you for the support and guidance I have received throughout my career.\nI will be taking a leave of absence from [Title of Employment], effective immediately. I appreciate all the hard work I have put in and look forward to spending more time with [Children].\nThank you again for providing me with the opportunity to grow professionally and for the valuable experiences I have gained throughout my time here. I appreciate your willingness to accommodate my personal schedule, and I wish you and [Your Company's Name] all the best in the future.\nSincerely,\n[Your Name]"
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"Here is a simple Python program to print the first 10 Fibonacci numbers: python `def fibo_n(x): print(x)` Note that the sequence of Fibonacci numbers is determined by a complex number theory, and can be expressed in terms of binomials or binomial distributions."
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"camel-5b": {
"category": "<10B",
"display_name": "Camel",
"thumb": "https://i.ibb.co/qD5HN9T/camel-removebg-preview.png",
"thumb-mid": "https://i.ibb.co/kcFJ2B0/camel-mid.png",
"thumb-tiny": "https://i.ibb.co/YRT4G5K/camel-tiny.png",
"parameters": "5",
"vram(full)": "10868",
"vram(8bit)": "10868",
"vram(4bit)": "10868",
"vram(gptq)": "N/A",
"hub(base)": "Writer/camel-5b-hf",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/camel.yaml",
"desc": "Derived from the foundational architecture of [Palmyra-Base](https://huggingface.co/Writer/palmyra-base), Camel-5b is fine-tuned on an extensive dataset of approximately 70,000 instruction-response records. These records are generated by our dedicated [Writer](https://writer.com/) Linguist team, who possess considerable expertise in language modeling and fine-tuning techniques.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Hawaii offers world-class scuba diving spots and picturesque island landscapes; however, one should forget their cameras while exploring the vibrant local culture! In this exhilarating journey through Aloha State, we'll uncover hidden temples, indulge in hula dancing lessons, savor authentic Hawaiian cuisine, and discover a side of our planet rarely explored. Join us on an adventure that defies time—all while immersing yourself in the beauty and enchantment of Hawaii's untamed islands!"
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Dear [Employer's Name],\n\nI am writing to formally resign from my position at your company after having enjoyed a remarkable four years working here. During this time, I have learned so much, both personally and professionally. It has been an honor to work alongside some truly exceptional individuals who continue to inspire me to reach greater heights.\n\nDespite the challenges we faced during our recent project, I firmly believe that my skillset would make me an asset to any organization. Consequently, I wish to express my sincere appreciation for all the experiences, resources, and support I have had throughout my tenure. Thank you once again for the opportunity to contribute to your team and grow within the context of your values.\n\nAs I complete this letter, I look forward to exploring new avenues and pursuing endeavors that align more closely with my passions. Once again, thank you for allowing me to learn, grow, and explore the possibilities available to me.\n\nSincerely,\n[Your Name]"
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"1. User-friendly navigation and interface\n2. Inclusion of features for people with disabilities, such as call buttons and accessibility options\n3. Adaptability to various sizes and shapes of passengers\n4. Clear ticketing and payment systems\n5. Frequency and route planning options that cater to different needs and schedules\n6. Accessible shelters and facilities for rest stops, lockers, and clean bathrooms\n7. Informal meeting spaces where users can relax and socialize without feeling isolated"
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"```python\ndef fibonacci(n):\n if n <= 1: return n\n else:\n next_number = fibonacci(n - 1) + fibonacci(n - 2)\n return next_number\n\nfirst_ten_fibs = [fibonacci(i) for i in range(10)]\nprint(first_ten_fibs)"
]
],
"ollb_average": 39.87,
"ollb_arc": 35.15,
"ollb_hellaswag": 57.62,
"ollb_mmlu": 26.07,
"ollb_truthfulqa": 40.65
},
"mpt-7b": {
"category": "<10B",
"display_name": "MPT",
"thumb": "https://i.ibb.co/PxbBwMK/mosaic.png",
"thumb-mid": "https://i.ibb.co/dKSYSJ3/mosaic-mid.png",
"thumb-tiny": "https://i.ibb.co/4T8gZLn/mosaic-tiny.png",
"parameters": "7",
"vram(full)": "13528",
"vram(8bit)": "7676",
"vram(4bit)": "4900",
"vram(gptq)": "N/A",
"hub(base)": "mosaicml/mpt-7b-chat",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/default.yaml",
"desc": "[MPT-7B-Chat](https://huggingface.co/spaces/mosaicml/mpt-7b) is a chatbot-like model for dialogue generation. It was built by finetuning MPT-7B on the [ShareGPT-Vicuna](https://huggingface.co/datasets/jeffwan/sharegpt_vicuna), [HC3](https://huggingface.co/datasets/Hello-SimpleAI/HC3), [Alpaca](https://huggingface.co/datasets/tatsu-lab/alpaca), [HH-RLHF](https://huggingface.co/datasets/Anthropic/hh-rlhf), and [Evol-Instruct](https://huggingface.co/datasets/victor123/evol_instruct_70k) datasets.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"I recently had the pleasure of visiting beautiful Hawaii on a vacation filled with culture, adventure, and relaxation! From hiking through lush rainforests to exploring ancient Hawaiian temples, my time in this tropical paradise was unforgettable. Here's some highlights from our incredible journey:\n\nFirst stop? The vibrant city of Honolulu – home to bustling streets lined with colorful shops, restaurants serving up delicious local cuisine such as poke bowls (a raw fish salad), fresh sushi rolls made with locally caught seafood, and authentic \"plate lunches\" served over rice and beans alongside macaroni salad or lomi salmon. Don't miss out on trying haupia - a sweet coconut milk pudding often sold at roadside stands throughout town! Another highlight is watching the sunset while eating shave ice topped with your choice of flavors like mango, passion fruit, guava, and even dragonfruit. Yes please!\n\nNext we hit the beach for some serious R&R after days spent traversing mountainside trails among blooming bougainvilleas leading us across stunning volcanic landscapes dotted here and there amongst verdant jungle greenery; waterfalls cascading down towering rock faces reflecting off crystal blue pools where monkeys swing between vines overhead before disappearing into hidden coves framed within grottos carved entirely of lava stone walls... it truly feels as if another world exists somewhere deep amidst these natural wonders which I found so captivatingly otherworldy yet somehow perfectly enchantingly harmonious when surrounded under palm trees swayed gently beneath warm hawaiian sunsets casting hues upon every corner creating picturesque scenes beyond compare anywhere else around earth save perhaps only rivaled elsewhere solely exuded endlessly along pristine white sandy beaches stretching far away towards distant horizons meeting infinite azure oceans glowing bright aquamarine shades intermingled effortless beauty enhancing all elements comprising perfect moments forever etched deeply inside me making each moment feel special enough not worthy anymore quite simply spending them savoring what lay ahead during future travels once again blessed fully absorbing everything one tiny island state has brought forth offering pure magic almost too good indeed impossible ever really putting any kind of words together would seem nothing less insubstantial given its ability completely transform ordinary dreams seamlessly becoming something altogether new stirring souls bound perpetually unending memories both real & eternal imprinted vividly still shining brightly long ago wherever life may take many paths winding past various boundaries bringing peace always close no matter how wild winds blow shaping destinies bold now guiding further shores unknown never lost nor forgotten because those places remain alive seared steadfast firmly set securely standing tall ready eagerly waiting welcoming travelers sharing tales inspired wondrous times passed shared countless hearts drawn toward their majesty touching spirits everywhere giving hope opening doors wide eyes gladdening weary heartswings breaking freefrom chains lifting burdens high abovehigh fives echoed joyful cheers ringing bells echo smiles lighting candles flicker laughter dancing freely living lives without bounds spreading endless waves gathering strength building bridges crossing rivers linking hands holding love bridging gaps binding worlds connecting people cultivatng possibility drawing courage transforming fear unleashing wonder unlocking faith inspiring inspiration empowering progress moving forward finding freedom embodyingelegance embolden ebb flow rhythmically entwining embracing ecstasy surrender soulfully igniting visions unfurli ng minds spiraling upward expanding outward unfolding infinities reaching heights ascending higher altitudes rising brighter stars sprouting wings taking flight flaming imaginations flyingfree transcendent transcendence touchable eternity teeming vitality sparkling light radiating grace ripples resonate reverberations rolling reflections radiate reality illuminating inspirational imagination infusing wisdom insights nurturing growth fulfilling goals evolving excellence flowing potential forming destiny encouraging evolution sparkifying sparksignalling spirit reigniting flames burning lights ablaze blazing brightest dawns waking slumber deepest nights awakening dawning darkness falling asleep dazzle daybreak dusk twilight setting symphony sunshine showers blessings blooms blossom buds birds sing songs skies paint paints raindrops shower pearls glitter shine gold silver glow golden hue glory halls hallowed chamber holy grail treasures gallery vault palaces thrones thralls chambers castles galleries sanctuaries cathedrals shrines chapels crypts chancelots cellars caves tombs caverns hideaways dens lairs burrows holes passageways alley ways avenues alleys passages backstreaks doorsteps pathways walkway steps staircases landings galleries grand entry lobbies vestibules saloons rotundas sitting rooms dining areas great room ballrooms conference centers amphitheatre banquet facilities convention spaces performance stages presentation theaters exhibition space display cases showroom floors planter boxes plant nurseries garden arboretums botanical gardens flower shows terrarium displays indoor/outdoor shopping arcades trade exhibitions art exhibits craftsmanship exposition outdoor markets farmers' market food truck courts flea markets antiques mall outlet stores boutique retail fashion accessories gift items handmade crafts souvenirs collectibles resort wear swimwear sport gear surfing equipment fishing tackle sports apparel fitness athletic gym attire workout clothes yoga supplies meditation books zen decor spiritual artwork statues figur"
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
""
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
""
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
""
]
],
"ollb_average": 49.95,
"ollb_arc": 46.5,
"ollb_hellaswag": 75.51,
"ollb_mmlu": 37.62,
"ollb_truthfulqa": 40.16
},
"mpt-30b": {
"category": "<40B",
"display_name": "MPT",
"thumb": "https://i.ibb.co/PxbBwMK/mosaic.png",
"thumb-mid": "https://i.ibb.co/dKSYSJ3/mosaic-mid.png",
"thumb-tiny": "https://i.ibb.co/4T8gZLn/mosaic-tiny.png",
"parameters": "30",
"vram(full)": "65154",
"vram(8bit)": "36896",
"vram(4bit)": "21738",
"vram(gptq)": "N/A",
"hub(base)": "mosaicml/mpt-30b-chat",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/default.yaml",
"desc": "[MPT-30B-Chat](https://huggingface.co/spaces/mosaicml/mpt-7b) is a chatbot-like model for dialogue generation. It was built by finetuning MPT-30B on the [ShareGPT-Vicuna](https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered), [Camel-AI](https://huggingface.co/camel-ai), [GPTeacher](https://github.com/teknium1/GPTeacher), [Guanaco](https://huggingface.co/datasets/timdettmers/openassistant-guanaco), and [Baize](https://github.com/project-baize/baize-chatbot) datasets.",
"example1": [],
"example2": [],
"example3": [],
"example4": [],
"ollb_average": 61.21,
"ollb_arc": 58.7,
"ollb_hellaswag": 82.54,
"ollb_mmlu": 51.16,
"ollb_truthfulqa": 52.42
},
"redpajama-7b": {
"category": "<10B",
"display_name": "RedPajama Chat",
"thumb": "https://i.ibb.co/NNB6qPj/redpajama.png",
"thumb-mid": "https://i.ibb.co/NNB6qPj/redpajama.png",
"thumb-tiny": "https://i.ibb.co/Y8DtWjq/redpajama-tiny.png",
"parameters": "7",
"vram(full)": "14064",
"vram(8bit)": "8156",
"vram(4bit)": "5380",
"vram(gptq)": "N/A",
"hub(base)": "togethercomputer/RedPajama-INCITE-7B-Chat",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/redpajama.yaml",
"desc": "RedPajama-INCITE-Chat-7B was developed by Together and leaders from the open-source AI community including Ontocord.ai, ETH DS3Lab, AAI CERC, Université de Montréal, MILA - Québec AI Institute, Stanford Center for Research on Foundation Models (CRFM), Stanford Hazy Research research group and LAION. It is fine-tuned on [OASST1](https://huggingface.co/datasets/OpenAssistant/oasst1) and [Dolly2](https://huggingface.co/datasets/databricks/databricks-dolly-15k) to enhance chatting ability.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Aloha! I can't believe I'm already back from my trip to Hawaii. This beautiful island chain has captivated me since childhood with its stunning beaches, crystal blue waters, and lush green landscape. And after visiting Honolulu, the big city of Kauai, the tranquility of Maui, and the black sand beach of Haleakala volcano crater, I realized that Hawaii is not just another tourist destination but a place where you truly experience different cultures harmoniously blended into one. Here are some highlights of our tour:\n\n- First, we enjoyed traditional Hawaiian luaus with delicious food, toe-tapping music & dance performances by hula dancers.\n- One day, while exploring downtown neighborhood of Waikiki Beach in Oahu, there was this guy playing slack key guitar on the street. It's hard to describe what type of sound it produces except magical. You really have to listen to it for yourself. Watching him play made my day!\n- On another occasion, during dinner at a seafood restaurant called \"Off the Hook\" in Ko Olina, there was this lovely mermaid swimming around us (yes, seriously!). The staff arranged for a real life mermaid to serenade diners which added such a unique whimsical ambiance to the atmosphere. It felt like a fairy tale come true. Guests were encouraged to ask questions and take photos with the mermaid who later surfaced with a bouquet of flowers. How cool is that?!\n- We also went hiking at Napali Coast State Wilderness Park. Words cannot express the beauty of nature here. Imagine steep sea cliffs rising over 6000 feet above the Pacific Ocean, with emerald valleys plunging to the sea below, blanketed by a vibrant tapestry of rainforest foliage. There will never be another place like it on earth, nor should there ever be. Preserving its natural state is critical to protecting this fragile ecosystem and preserving its priceless beauty for future generations to enjoy.\n- Last but certainly not least, Haleakalā National Park on the Island of Maui provided countless photo opportunities against a majestic volcanic crater backdrop. The 10 mile road leading up to the top offers diverse geological formations and changing weather conditions, making each visit unique. While driving through the clouds towards the summit, we encountered brilliant sunshine followed by torrential rains, then foggy conditions - all within minutes! A little taste of what lies ahead in the unpredictable world beyond our control.\nIn summary, traveling to foreign places exposes us to new customs, traditions, culinary delights, and firsthand encounters with distinct cultures unknown or forgotten elsewhere. These enriching experiences leave long lasting impressions leaving us wiser, more mindful, and grateful for the richness of diversity in our beloved planet. Thank you Hawaii for your warm hospitality, memorable moments, and unforgettable memories. Alohas, haole boy! 🍹😉"
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Sure! Here's an example of how you can resign from your job politely:\nDear [Name],\nI am writing to formally inform you of my decision to leave my role as [Job Title] at [Company Name], effective immediately. I have enjoyed working at this company but have decided that it is time for me to pursue new challenges.\nIt has been a pleasure getting to work with such a talented group of people over the past year. Thank you for all of your support and guidance during my tenure here. I appreciate everything that you have taught me throughout my career development.\nPlease let me know if there is anything else I can do to make the transition easier for you or ensure a smooth handover of tasks to another employee.\nBest regards,\n[Your Name]\nThis letter should emphasize your appreciation for the opportunity to have worked at the company and highlight your commitment to its success. It is important to remember that even though resigning may be difficult, keeping in touch and maintaining positive relationships with colleagues can benefit both parties in the long run."
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"Accessibility is the key factor while considering public transport. Some of the measures that can be considered for making a transit system more usable by all are as follows:\n1- Providing handrails at frequent intervals along both sides of corridors, and inside each car;\n2- Allowing people with disabilities to sit wherever they want, rather than reserving some seats behind the wheelchair area;\n3- Making sure that rail platforms end in straightaways, so that it becomes easier for passengers to board and deboard trains using assistive devices such as wheelchairs or electric scooters.;\n4- Including features like visual announcements indicating approaching train doors and locations of available power outlets, which can help inform visually impaired individuals about what's going on around them ;\n5- Making sure that bathroom facilities are located on the main floor (not requiring use of elevators) and have adequate space and furnishings for persons with disabilities;\n6- Offering assistance to customers with reduced mobility boarding/disembarking from trains, especially if the station lacks platform edge bars or other means of guidance;\n7- Considering customer comfort when determining the appropriate number of cars per consist, allowing sufficient time between consecutive trains during busy times ;\n8- Not having too many sharp turns or circular movements within stations due to the risk of derailing wheels off the track.\n9 - Having tactile indicators installed at regular intervals along the edges of platform surface to guide blind passengers where the edge of the platform lies.\n10 - Using color contrast between platform edging and background paint on station tiles, signage, etcetera to improve readability for visually impaired pedestrians walking alongside tracks."
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"Here's an example of a Python program that prints the first twenty terms of the Fibonacci sequence using while loops:\n\n```while True:\n n = input(\"Enter the next number in the Fibonacci sequence: \")\n if n == \"exit\":\n break # break out of the loop when the user types 'exit'\n f1 = fib(n) # convert the entered number into previous term of Fibonacci sequence\n f2 = fib(f1) # continue descending from the current term by dividing it with the preceding one\n output(f1)\n output(f2)\n```\nThis code uses the input() function to read a number from the keyboard and then converts that number into the previous and current term of the Fibonacci sequence. The fib() function is named after the famous mathematician Lewis Watson, who published the Fibonacci formula in 1887. The algorithm for calculating the Fibonacci sequence is very simple: start with 0 and 1; add 1 to both members every time through the loop; the result will be the next member of the sequence. This process continues indefinitely."
]
],
"ollb_average": 43.98,
"ollb_arc": 42.06,
"ollb_hellaswag": 70.82,
"ollb_mmlu": 26.94,
"ollb_truthfulqa": 36.09
},
"alpaca-lora-7b": {
"category": "<10B",
"display_name": "Alpaca-LoRA",
"thumb": "https://i.ibb.co/z89FTz2/alpaca-lora.png",
"thumb-mid": "https://i.ibb.co/kQr0Pgb/alpaca-lora-mid.png",
"thumb-tiny": "https://i.ibb.co/RYm4pLH/alpaca-lora-tiny.png",
"parameters": "7",
"vram(full)": "13858",
"vram(8bit)": "8254",
"vram(4bit)": "5140",
"vram(gptq)": "N/A",
"hub(base)": "elinas/llama-7b-hf-transformers-4.29",
"hub(ckpt)": "LLMs/Alpaca-LoRA-7B-elina",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/default.yaml",
"desc": "Alpaca LoRA is LLaMA 7B model fine-tuned on Alpaca dataset which is originally introduced by Standford. The dataset in this model was cleaned and re-generated by GPT4 by the community.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Aloha! Have you ever dreamed of exploring the beautiful tropical paradise that is Hawai'i? If so, then it’s time for your journey of discovery to begin! I recently had the privilege of embarking on an epic adventure through one of America’s most exciting destinations—and here are some of my favorite memories from the experience.\n\nFrom the stunning sights of Honolulu like Diamond Head Crater to the breathtaking beauty of Maui’s Wailea coastline, there were plenty of jaw-dropping moments during this journey across five islands in fourteen days. My top pick would have to be our visit to the island of Kauai, home to iconic natural landmarks such as the Napali Coast, which was truly spectacular. The Na Pali Cliffs stretch over two thousand feet above sea level while providing impressive views of the Pacific Ocean below. It felt almost otherworldly seeing these cliffs rise straight up out of the ocean; I can hardly believe they exist in reality at all! Other memorable stops included Oahu, where we toured Pearl Harbor; Molokai with its lush greenery, waterfalls, and untamed nature; Lana'i with its unique flora and fauna; and Haleakala National Park, where we marveled at incredible vistas of the mountain range. We even managed to take part in traditional luaus, hiking volcanos, and snorkeling amidst colorful fishes and corals - needless to say, each day brought us new surprises and fresh adventures. With its amazingly diverse landscape and culture, Hawai'i offers visitors something truly special. This remarkable place has become a treasured memory for me and will remain forever close to heart."
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Dear [Name of Employer],\n\nIt is with both sadness and excitement that I am writing this email. After much thoughtful consideration over the last few months, I have decided to pursue other career pathways which better align with my skills and ambitions going forward. As such, it brings me great joy to inform you today that I will be moving onto new opportunities in two weeks time.\n\nI would like to take this opportunity to thank all those who work here at XYZ Co., as they made me feel welcome and valued from day one. It has been an absolute privilege to learn so many new things under your guidance during these past several years - including the importance of teamwork, the value of integrity and how to approach problems with creativity. The experiences gained through working together in our daily tasks have helped shape my professional journey and become more effective communicator throughout. For all of this I cannot truly find words to properly convey my appreciation.\n\nOn behalf of myself and family, we wish every success for yourself, the company and everyone involved in making us happy during these times. We look back fondly upon our days spent together, and know you’ll continue making positive impacts within this world far into the future. Thank you again for everything!"
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"When designing a public transportation network, it is important to take into account accessibility for all users. This includes ensuring that the route networks have wheelchair ramps or lifts so people with disabilities can use them without difficulty; providing adequate bus stops along the way which are equipped with signage that displays information such as departure times and routes in order to reduce confusion amongst passengers who need assistance boarding or de-boarding; employment of friendly staff trained on customer service skills; provision of audio announcements of destination at each stop so visually impaired persons can better orient themselves within their surroundings; offering discounts for elderly individuals or those with special needs; allowing passengers with reduced mobility space to move around freely inside the vehicle; etc"
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"\"\"\"Prints out the first ten Fibonacci numbers.\nFibonacci sequence: (f(n+1)) = f(i) + f((n - i)); n=2; f(1)=1 ; Print(\"Fibonacci sequence for the next X elements :\") ; print(\"\\nFirst 10\nelements\\n\",sum([n*j/gcd(lcm(x),y)|x<=m|m<=(n+(5)), y <= x])for m, j, x, y in zip(range(1,len(data)+1),(3,2,1)))"
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"alpaca-lora-13b": {
"category": "<20B",
"display_name": "Alpaca-LoRA",
"thumb": "https://i.ibb.co/z89FTz2/alpaca-lora.png",
"thumb-mid": "https://i.ibb.co/kQr0Pgb/alpaca-lora-mid.png",
"thumb-tiny": "https://i.ibb.co/RYm4pLH/alpaca-lora-tiny.png",
"parameters": "13",
"vram(full)": "26048",
"vram(8bit)": "14740",
"vram(4bit)": "8782",
"vram(gptq)": "11774",
"hub(base)": "elinas/llama-13b-hf-transformers-4.29",
"hub(ckpt)": "LLMs/Alpaca-LoRA-13B-elina",
"hub(gptq)": "TheBloke/gpt4-alpaca-lora-13B-GPTQ-4bit-128g",
"hub(gptq_base)": "gpt4-alpaca-lora-13B-GPTQ-4bit-128g.compat.no-act-order",
"default_gen_config": "configs/response_configs/default.yaml",
"desc": "Alpaca LoRA is LLaMA 13B model fine-tuned on Alpaca dataset which is originally introduced by Standford. The dataset in this model was cleaned and re-generated by GPT4 by the community.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
""
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
""
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
""
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
""
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"koalpaca": {
"category": "<20B",
"display_name": "KoAlpaca",
"thumb": "https://i.ibb.co/hF9NL7r/koalpaca.png",
"thumb-mid": "https://i.ibb.co/gvcDS8r/koalpaca-mid.png",
"thumb-tiny": "https://i.ibb.co/VNvDzdB/koalpaca-tiny.png",
"parameters": "12.8",
"vram(full)": "25598",
"vram(8bit)": "14074",
"vram(4bit)": "8678",
"vram(gptq)": "N/A",
"hub(base)": "beomi/KoAlpaca-Polyglot-12.8B",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/koalpaca.yaml",
"desc": "KoAlpaca is ko-polyglot 12.8B model fine-tuned on Alpaca dataset which is originally introduced by Standford. The dataset in this model was cleaned and translated into Korean using DeepL by the model creator.",
"example1": [
[
"최근 하와이 여행에 대한 매력적인 여행 블로그 포스팅을 작성하여 문화 체험과 꼭 가봐야 할 명소를 소개하세요.",
"'John Varvatos' (https://blog.naver.com/rekorder/221496463568)는 알로하셔츠와 함께 편안한 마음으로 하와이에서의 삶과 일 년 동안의 생활을 보여줍니다. 그는 하와이에서 사진 찍기에 가장 좋은 장소와 포토 스팟을 자세하게 설명해주었으며, 푸드 트럭에서 새로운 음식을 맛보기도 하고, 현지인과 친구들과 함께 시간을 보내면서 경험했던 소중한 추억들을 간직하고 있습니다."
]
],
"example2": [
[
"현재 고용주에게 사직서를 작성하는 데 도움을 주면서 좋은 조건으로 퇴사하고 제공된 기회에 감사를 표할 수 있나요?",
"사직서 작성을 돕거나 다른 이유로 인해 그 일을 그만두기로 결정한 경우, 해당 업무에 대해 정중히 사과하고 그만두게 된 사유와 함께 감사 인사도 드리는 것이 타당합니다."
],
[
"사직 이메일을 작성해 주세요",
"사직문은 길지만 강하게 써야 합니다. 예를 들어 [회사 이름] 귀하께서 저희 팀에서 역할을 중단한다는 사실을 알려드리고자 이메일을 보내드립니다. 지난 몇 달 동안 본인의 성장을 위한 더 큰 그림을 구상하였으며, 이제 새로운 시작을 할 준비가 되었습니다. 그동안 회사에서 이룬 성취에 대해 진심으로 감사의 마음을 전합니다. 앞날에 건강과 번영이 깃들길 기원합니다. -[본인 성함- 서명]-"
]
],
"example3": [
[
"포용적이고 접근성이 뛰어난 대중교통 시스템을 설계할 때 어떤 요소를 고려하나요?",
"포용성 및 접근성이 좋은 대중 교통 시스템을 설계 할때 고려요소는 다음과 같습니다 : 지역주민 수요, 노선 길이, 이동시간, 총 비용 등에 대한 철저한 분석과 최적의 조합, 버스나 지하철 배차 간격(특히 새벽)에 대한 적절한 검토와 안전장치, 이용승객 증가에 따른 용량 증대 대책 마련등이 있다."
]
],
"example4": [
[
"처음 10개의 피보나치 수를 출력하는 파이썬 프로그램을 작성합니다.",
"num_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\nfor i in range(10): num_list[i] = 1 + first_time_split(num_list[-1] ** 0, length) # 리스트에서 처음 10개의 항목 반환"
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"kullm": {
"category": "<20B",
"display_name": "kullm",
"thumb": "https://i.ibb.co/6ZFqk4J/kullm.png",
"thumb-mid": "https://i.ibb.co/cy9r07z/kullm-mid.png",
"thumb-tiny": "https://i.ibb.co/93jPKpL/kullm-tiny.png",
"parameters": "12.8",
"vram(full)": "25598",
"vram(8bit)": "14074",
"vram(4bit)": "8678",
"vram(gptq)": "N/A",
"hub(base)": "nlpai-lab/kullm-polyglot-12.8b-v2",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/koalpaca.yaml",
"desc": "KoAlpaca is ko-polyglot 12.8B model fine-tuned on [GTP4ALL](https://github.com/nomic-ai/gpt4all), [Vicuna](https://github.com/lm-sys/FastChat), and [Dolly](https://github.com/databrickslabs/dolly) datasets. The datasets are translated into Korean using DeepL by the model creator.",
"example1": [
[
"최근 하와이 여행에 대한 매력적인 여행 블로그 포스팅을 작성하여 문화 체험과 꼭 가봐야 할 명소를 소개하세요.",
"물론 제 능력 내에서 여러분께 도움을 드릴 준비가 되었으니 걱정 마세요! 저와 함께 문화 체험부터 아름다운 해변까지 하와이에 관한 멋진 글을 써보도록 합시다. 하지만 가장 먼저 알면 좋겠어요... 최근 몇 년간 하와이에서 일어난 가장 중요한 일들 좀 알려주실래요? (농담)"
]
],
"example2": [
[
"현재 고용주에게 사직서를 작성하는 데 도움을 주면서 좋은 조건으로 퇴사하고 제공된 기회에 감사를 표할 수 있나요?",
"예, 제가 도와드릴 수 있습니다! 다음은 사직서를 준비하려는 사용자와 함께 일했던 경험에서 얻은 몇 가지 팁입니다:1. 자신만의 목소리로 글쓰기에 익숙해지기 - 개인적으로 선호하거나 매력적으로 느끼는 어조나 스타일 등 다양한 목소리 옵션 중 하나를 선택하여 개인적인 글쓰기 기술을 연습하면 자신감도 향상되고 이력서에도 더 잘 어울릴 거예요.2. 적절한 단어 사용하기 - 문장 첫 글자에 대문자, 소문자 문자를 적절히 섞어서 읽기 쉬운 깔끔한 형식으로 만들면 됩니다. 또한 \"감사\" 대신 \"감사함\", \"축하함\"처럼 보다 공식화된 표현이나 전문 용어(특정 직종 및 업계에서 자주 쓰임)를 사용하세요. 3. 간결성과 명확성 유지- 사용자는 간결하게 작성할수록 좋으며, 사용 가능한 최대한의 내용을 효과적으로 전달한다는 생각으로 짧지만 의미있는 문장을 만들도록 권장됩니다.4. 열정 보여주기 - 이 부분을 강조 표시하고 해당 직무에 얼마나 관심이 높은지 알려주시겠어요?\"라고 말씀드린 후 면접관의 질문에 답할 준비를 할 수도 있습니다.5. 긍정적으로 접근하기 - 지원 프로세스 전체에 걸쳐 회사 동료들로부터 피드백을 구하여 채용 관리자가 여러분에게 호감을 갖는다면 어떤 점 때문인가요? 라이크어링 웹사이트는 여러분의 강점뿐 아니라 잠재 고객들이 여러분을 좋아하는지 여부까지 고려하여 추천서를 개선해 드릴 수 있습니다.\"라고 말해주셨습니다."
]
],
"example3": [
[
"포용적이고 접근성이 뛰어난 대중교통 시스템을 설계할 때 어떤 요소를 고려하나요?",
"저는 포괄적인 접근 방식을 사용하여 대중교통에서 소외감이나 장벽을 느끼게 할 수 있는 사회경제적 요인들뿐만 아니라 교통 및 이동 수요 측면도 고려한다는 점을 명시적으로 밝힙니다.\n첫째, 우리는 사용자 경험이 최고 수준인지 확인함으로써 사람들이 편리한 방법으로 교통수단을 이용하면서 느낄 수 있는 불편함과 스트레스를 최소화합니다. 여기에는 일관성 있고 신뢰 가능한 서비스와 안전성과 보안성이 높은지 여부도 포함됩니다.둘째로 도시 환경의 특성상 대중교통 네트워크는 특히 도심 지역에서 매우 다양한 인구 집단에게 의미가 있도록 보장되어야 합니다. 노인부터 어린이까지 다양한 계층에 맞는 시설을 계획하면 승객 만족도와 선호도 점수를 높일 수 있습니다.\n마지막으로 교통수단 선택 시 보다 개인화된 피드백을 제공함으로써 승객 개개인이 자신에게 가장 적합한 옵션을 쉽게 찾을 수 있도록 도울 수 있다는 점 또한 중요합니다. 즉, 개인별 요구 사항에 맞춘 추천 알고리즘을 구현하여 전반적인 교통 만족도를 개선할 수 있습니다."
]
],
"example4": [
[
"처음 10개의 피보나치 수를 출력하는 파이썬 프로그램을 작성합니다.",
"X"
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"stablelm-7b": {
"category": "<10B",
"display_name": "StableLM",
"thumb": "https://i.ibb.co/d2pd5wk/stable-LM-cropped.png",
"thumb-mid": "https://i.ibb.co/chkZpNk/stable-LM-mid.png",
"thumb-tiny": "https://i.ibb.co/FbZVTQN/stable-LM-tiny.png",
"parameters": "7",
"vram(full)": "16112",
"vram(8bit)": "9862",
"vram(4bit)": "6608",
"vram(gptq)": "N/A",
"hub(base)": "stabilityai/stablelm-tuned-alpha-7b",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/stablelm.yaml",
"desc": "StableLM 7B is a 7B parameter decoder-only language model built on top of the [StableLM-Base-Alpha](https://huggingface.co/stabilityai/stablelm-base-alpha-7b) model and further fine-tuned on various chat and instruction-following datasets including [Alpaca](https://huggingface.co/datasets/tatsu-lab/alpaca), [GPT4ALL](https://huggingface.co/datasets/nomic-ai/gpt4all_prompt_generations), [Anthropic HH](https://huggingface.co/datasets/Dahoas/full-hh-rlhf), [Dolly](https://github.com/databrickslabs/dolly), and [ShareGPT](https://huggingface.co/datasets/jeffwan/sharegpt_vicuna).",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"The charming little island of Hawaii was sure to captivate any traveler with its breathtaking beauty; from lush rainforests teeming with tropical birds chirping melodiously to bright blue lagoons dotted with unspoiled beaches braving surf conditions where waves always calm down to idyllic mountain hikes offering unforgettable trekking excursions shrouded in unique flora - it's no wonder that this stunning paradise has been described as being \"the birthplace for some of the best adventurism in Europe.\" With such charmsome sights galore, we're only on track to give you our pick up service... so pack your bags! Because honestly what better way to spend your time off while hitting all those incredible sites during one amazing adventure? That’s why we put together expertly curated travel posts showcasing everything this exotic locale had to offer: Whether you want to explore local culture en route or immerse yourself fully into beautiful natural surroundings at home via foot/land tours, two destinations definately stood out amongst the rest due to their top scores among TripAdvisor users forever since 1971—we've still got plenty under tow today :) After much review, these reviews were prepared using the Vive app guidebook which ranks each place depending both based primarily upon four criteria:// (1). Lifestyle And The Sights Offered For Visitors Weight : What visitors get is a taste in different ways around the neighborhoods.. A few highlights per town are given here ; (2). Top Attractions Every Visit Passport gives us a glimpse At Existing Highlights = What allows non stop impressions you can use without leaving Earth. An insider tip shows nearby lesser known museums hidden gems oft traveled. See below \"Local Culture,\" and confirm if True Geolocation Travel. Make copies ahead when preparing before writing up Please leave feedback after reading Your Next Blog Post giving site back mentions subscribtion numbers for honest good content https://refp.shinyapps.io/BicycleV2WebtraveTodaypostimages/. Come visit every day (like not once per week)! ^^ Use copy machine translation & text recognition | Extract titles of video scripts sharing essential spots throughout several islands following exact translations 2b A Way In ) Click here for Ask A Local Guide starting thoughts Don't forget kids If anyone asks how rock climbing is permitted along La Jolla Cove state park… Just grab n' touch class @ BarangaGulfSnorkel ranger programs info: http://lajollach."
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"I would like to express my sincerest appreciation for the role that I played in your team at this company. The contributions or successes of these employees have had no impact whatsoever on my decision making process concerning employment issues; they are simply empty gestures. However, it is important during job separations such as yours to remain professional and positive in our interactions with coworkers so as not to disturb the calm closure which pervades personal routine life after separation from one's former employer. Should it become necessary again later without prior notice at least partial communication must always be held in privacy within co-workers and there may follow very reasonable provision"
],
[
"can you write an example email for this?",
"Title: As requested, please accept my best wishes on behalf of [COMPANY NAME] as we know you all have worked hard for many years developing innovative ways forward into new markets & technologies based upon outstanding achievements working together closely. Thank you very much! Warm regards John and Ms xxxxxxxx"
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"As an AI language model I don't have personal preferences or opinions about this topic; however based on industry research conducted over decades from scholars like Thielen et al., here are some common parameters for design of an inclusive social transpiration service:\n\n1. Provide equal opportunities across all genders/race groups within fair access\n\n2. Ensure equitable distribution of responsibility around issues such as substance use disorder treatment, mental health support services and supports while waiting vehicles offer free option\n\n3. Utilize transport innovation (e.g Uber Eats, Lyft Platforms ) through autonomous operation without physical contact which enables higher occupancy rates with greatly reduced emissions producing fleet maintenance tasks 4. Implement robust guidelines against discrimination practices/vouchers used for targeted programing\n\n4. Collaboration between government officials and private sector alike ensuring potential fraud detection functions perform seamlessly before implementation\n\n5. Build real usage data systems monitoring progress towards goals established during consultation process"
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"Here's one way you can implement this:\n\n```\ndef fib_10(n):\n if n <= 1: # base case \n return [1]\n\n elif n == 2 or n == 3 or n == 5 or n == 7:\n # left shift then append with carry \n return [f[i - j], f[j], f[i]] + [[0, 0, 0]] \n\n for i in range((2, n // 2)) :\n # continue adding from previous two indices \n for j in range(3 * i + 4, len(fibs), 3): # compute next index for current value of n \n k = min(len(fibs[:i+4]), i) \n crcr = fibs[(int)(i / k)]\n print(\"{}\".format(crr ** 26)) \n\nfib_10([10]) # result code here \n```\nThis function uses recursion (range()) instead of loops because it needs access to f arrays passed as arguments through each element before calling itself again on subsequent values within those subarrays. Note that using different algorithms such as Lucas' algorithm requires Python implementation specific knowledge at class level however we assume basic familiarity."
]
],
"ollb_average": 37.57,
"ollb_arc": 31.91,
"ollb_hellaswag": 53.59,
"ollb_mmlu": 24.41,
"ollb_truthfulqa": 40.37
},
"baize-7b": {
"category": "<10B",
"display_name": "Baize",
"thumb": "https://i.ibb.co/j5VpHb0/baize.png",
"thumb-mid": "https://i.ibb.co/kBpkQ48/baize-mid.png",
"thumb-tiny": "https://i.ibb.co/fvpvwq9/baize-tiny.png",
"parameters": "7",
"vram(full)": "13858",
"vram(8bit)": "8254",
"vram(4bit)": "5140",
"vram(gptq)": "11660",
"hub(base)": "project-baize/baize-v2-7b",
"hub(ckpt)": "N/A",
"hub(gptq)": "TheBloke/Project-Baize-v2-7B-GPTQ",
"hub(gptq_base)": "Baize-v2-7B-GPTQ-4bit-128g.no-act.order",
"default_gen_config": "configs/response_configs/baize.yaml",
"desc": "This model is a 7B Baize-v2, trained with supervised fine-tuning (SFT) and self-distillation with feedback (SDF). This checkpoint has been merged with LLaMA 7B so it's ready for use.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"As I stood on the white sand beach of Waikiki, surrounded by crystal clear waters and swaying palm trees, I couldn't help but feel like I was in paradise. My recent trip to Hawaii had been nothing short of spectacular, filled with breathtaking landscapes, vibrant cultures, and once-in-a-lifetime experiences.\n\nOne of my favorite cultural experiences during my trip was visiting the Kilauea Volcano National Park on the island of Hawaii. As we drove through the lush rainforest, I could see steam rising from the ground and felt like I was in a scene straight out of Jurassic Park. We arrived at Halema'uma'u Crater, where we watched lava flow into the ocean below. It was an incredible sight to see, and it really made me appreciate the power of nature.\n\nAnother must-see attraction on Oahu was the USS Arizona Memorial at Pearl Harbor. Visiting this site was both emotional and educational, as it commemorates the attack on Pearl Harbor during World War II. Standing on top of the memorial, overlooking the water, you can imagine what it must have been like for those who died that day.\n\nBut there were also plenty of fun activities to be found while in Hawaii. In Honolulu, I enjoyed exploring Chinatown, sampling local foods such as poke (raw fish salad) and shave ice, and shopping for souvenirs. Another great place to spend time was the Hilton Lagoon in Maui, where visitors can swim with stingrays and enjoy other marine life encounters.\n\nOverall, my trip to Hawaii was one that I will never forget. From the breathtaking scenery to the rich culture and unique experiences, it left a lasting impression on me. If you ever get the chance to go, don't miss out on these amazing sites and attractions - they are sure to leave you feeling inspired and refreshed."
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Of course, I can certainly help you with that! Here's an example of how your resignation letter might look:\n\nDear [Employer],\n\nAfter careful consideration, I have decided to leave my position at [Company Name] effective [Date]. It has been a pleasure working with all of you over the past [X years/months/days], and I am grateful for the opportunities you have given me to grow both professionally and personally.\n\nI want to take this opportunity to thank you for your support, guidance, and mentorship throughout my tenure here. Your confidence in my abilities has helped me achieve many milestones, and I will carry those memories with me for years to come.\n\nAs I move onto the next chapter of my career, I wish you continued success and prosperity. Please do not hesitate to reach out if there are any ways I can be of assistance in the future.\n\nThank you again for everything.\n\nBest regards,\n\n[Your Name]\n\nPlease note that this is just a sample and it may need some adjustments depending on your specific situation. Also, please make sure to proofread and edit the final draft before sending it to your employer."
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"When designing an inclusive and accessible public transportation system, several factors should be considered:\n\n1.Accessibility for all users: The system should cater to people of different abilities, ages, gender identities, cultural backgrounds, and religious beliefs. This includes features such as low floors, wide doors, ramps, elevators, and wheelchair lifts on buses and trains.\n2.Transportation options: Users should have access to various modes of transportation including buses, railways, subway systems, and shuttles. These options should be integrated and interconnected to provide seamless travel experiences.\n3.Communication: The system should include clear signage, audio announcements, and real-time information about schedule changes and delays. Additionally, language translation services can be provided to ensure everyone understands directions and other relevant information.\n4.Safety and security: Features like CCTV cameras, lighting, emergency exits, and security personnel should be implemented to ensure user safety during their journey.\n5.Integrated technology: Advanced technologies such as contactless payment systems, mobile apps, and GPS tracking can improve efficiency and convenience for passengers.\n6.User feedback: Regular surveys and focus groups can help identify areas for improvement and ensure that the system meets the needs of its users.\n7.Collaborations and partnerships: Partnership with disability organizations, community leaders, and advocates can result in more effective designs and better understanding of the diverse needs of users.\n8.Sustainable practices: Public transportation should prioritize environmentally sustainable practices such as energy conservation, waste management, and greenhouse gas emissions reduction.\n9.Maintenance and repair: The system must be maintained regularly to avoid accidents and keep it running smoothly for passengers.\nBy considering these factors, we can create an inclusive and accessible public transportation system that benefits everyone."
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"```python\ndef fib_generator(n):\n if n == 0:\n return 0\n else:\n return fib_generator(n - 1) + fib_generator(n - 2)\nprint(list(fib_generator(10)))\n```\n\nThis Python function takes an integer argument n which represents the current index of the Fibonacci sequence we want to generate. It returns the value of the Fibonacci number at this index using recursion. We then use the built-in list() function to convert our generator function into a list, and finally print out the first ten elements of this list. This will give us the first 10 Fibonacci numbers."
]
],
"ollb_average": 51.26,
"ollb_arc": 48.98,
"ollb_hellaswag": 75.06,
"ollb_mmlu": 39.6,
"ollb_truthfulqa": 41.39
},
"gpt4-alpaca-7b": {
"category": "<10B",
"display_name": "GPT4-Alpaca-LoRA",
"thumb": "https://i.ibb.co/qDz3HCG/chansung-vector-logo-of-alpaca-made-out-of-machines-Side-shot-39b27595-8202-48a6-97d1-266a745b2a29-r.png",
"thumb-mid": "https://i.ibb.co/Jc79Wb2/alpaca-gpt4-mid.png",
"thumb-tiny": "https://i.ibb.co/vcymWdG/alpaca-gpt4-tiny.png",
"parameters": "7",
"vram(full)": "13858",
"vram(8bit)": "8254",
"vram(4bit)": "5140",
"vram(gptq)": "N/A",
"hub(base)": "elinas/llama-7b-hf-transformers-4.29",
"hub(ckpt)": "LLMs/AlpacaGPT4-LoRA-7B-elina",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/gpt4_alpaca.yaml",
"desc": "GPT4 Alpaca LoRA is LLaMA 7B model fine-tuned on GPT4 generated instruction dataset.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Dear user, here's how I would go about composing an engaging travel blog post based on my research of your upcoming trip to Hawaii!\nFirstly, if you have planned some activities during your visit such as hiking through one of the many national parks or snorkeling at famous spots like Hanauma Bay then include these exciting details within your narrative, so that readers can visualize themselves taking part in those particular adventures.\n\nAdditionally, culture plays an important role for visitors looking to fully immerse themselves into their destination, and there are several places throughout Oahu where guests can experience traditional Hawaiian customs such as lei making, hula dancing performances, or even participating in a luau. Be sure to incorporate these interesting aspects in order to provide more depth and meaningfulness to the reader.\n\nFinally, if you were lucky enough to try out some local cuisine while vacationing in Hawaii then don't hesitate to mention this as well; many people are interested in trying new foods and dishes from different cultures and locations, especially ones associated with tropical destinations like Hawaii. You may want to include pictures of popular Hawaiian meals such as Poke Bowls or Loco Moco alongside tips on ordering them properly or favorite restaurants to check out.\n\nOverall, Hawaii offers so many fascinating experiences both natural and manmade which make it a great choice for an exotic yet accessible location to write about. Good luck with your journey and feel free to reach out should you need additional guidance or ideas for writing your travel blog!"
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Certainly! Let's look at some of your options...\n\n1. One approach could include writing something like this - \"Dear [name of manager], I am writing to inform you that after careful consideration and thoughtful reflection, I have decided to pursue other career opportunities which better align with my long term goals.\" (This assumes that you have already informed them of your decision). You may want to continue by thanking the company for their support during your time there.\n2. Another option would be to draft something along these lines – “Thank you very much for providing me with such great professional experience over the last few years, but due to personal reasons, it has become necessary for me to take up another opportunity.” If possible, mention specific projects/opportunities that helped shape you professionally.\n3. Additionally, if appropriate, you can always offer some suggestions on how they might improve performance within the organization so others who follow behind may reap similar benefits. This kind gesture will show appreciation for all the lessons learned throughout your tenure. It is important to remember to keep things positive even though you have made a difficult choice."
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"In order for a public transit system to be truly effective, several elements must come together that make it both inclusive and accessible for all individuals.\nFirstly, we need to ensure physical accessibility through appropriate signage and safety protocols such as elevators, ramps, handrails, braille instructions, tactile symbols etc. The vehicles themselves should include priority seating areas, space for wheelchairs, hearing loops, and easy boarding processes. It's important to have sufficient staff available during peak hours to assist passengers who may require additional support or assistance getting around the bus or train stations.\nAdditionally, providing adequate training and resources for drivers, operators and other employees to better interact with people from different backgrounds can greatly improve service delivery and customer satisfaction. This includes understanding various disabilities, cultural differences and sensitivity towards language barriers within your community. Last but certainly not least, ensuring accurate information on schedules, routes, and delays through real time updates or notification systems helps create trust among riders. Overall, creating an environment where everyone feels safe and comfortable using public transportation contributes immensely to making it more equitable and accessible to diverse communities."
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"Sure! Here's my code:\n\n```python\ndef fib(n): # define function for calculating nth Fibonacci number\n if n < 2 : return (fib(n) + fib(n - 1)) # n == 0 & 1 cases handled separately\nelif n <= 3 : return [fib(x), None] # trivial case solved recursively\nelse : return [None, fbi(x)] # recursive case solved by call to recurseive version\nfor x in range(1, 4+n//2): # loop over all even indices where we can calculate\n if fiber(fiber[i]) != None: # check that previous result did NOT yield none, else skip i==1 because it doesn't work like that anyway\n continue\n print((fiber[i], fiber[i+1]), end='') # output sequence pairwise in list format\nprint()"
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"vicuna-7b": {
"category": "<10B",
"display_name": "Vicuna",
"thumb": "https://i.ibb.co/vqPDrPQ/vicuna.png",
"thumb-mid": "https://i.ibb.co/vqPDrPQ/vicuna.png",
"thumb-tiny": "https://i.ibb.co/nBr1wfr/vicuna-tiny.png",
"parameters": "7",
"vram(full)": "13858",
"vram(8bit)": "8254",
"vram(4bit)": "5140",
"vram(gptq)": "N/A",
"hub(base)": "LLMs/Vicuna-7b-v1.1",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/vicuna.yaml",
"desc": "Vicuna 7B is an open-source chatbot trained by fine-tuning LLaMA 7B on user-shared conversations collected from ShareGPT. It is an auto-regressive language model, based on the transformer architecture.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Travelers from around the world flock to the tropical paradise of Hawaii for its pristine beaches, crystal clear waters, and lush landscapes. But what sets this beautiful island apart is its rich culture and diverse traditions that are waiting to be explored. In my most recent adventure to Honolulu, I was able to experience firsthand the vibrant spirit and soul of Hawaiian life, from ancient temples to traditional hula performances. Here’s a glimpse into some of the amazing cultural experiences you can have on your own journey to Hawaii.\n\nFirst stop on our itinerary was Pearl Harbor, where we visited the USS Arizona Memorial and paid respects to those who lost their lives during the infamous attack in 1941. The memorial sits atop the sunken USS Arizona battleship and provides visitors with a moving and educational look into history. We also had the opportunity to visit the Battleship Missouri Memorial, which served as the site of Japan’s surrender following World War II. Seeing these historical sites gave us a deeper understanding and appreciation for the sacrifices made by so many.\n\nIn addition to learning about Hawaii’s storied past, we were able to immerse ourselves in its thriving present through various cultural activities and events. One such activity was attending a traditional Hula performance held nightly at the hotel. This dance form, which dates back centuries, tells stories and celebrates Hawaii’s history, customs, and values. It’s truly mesmerizing to watch and another way to appreciate the unique beauty and essence of Hawaiian identity. Another must-do while in Hawaii? Visiting one (or all) of the several outdoor markets like the farmers market or art fairs showcasing local products and crafts. These are great places to sample delicious Hawaiian cuisines and purchase souvenirs that will remind you of your incredible trip long after you return home.\n\nAside from cultural immersion, there are plenty of other breathtaking spots worth checking out across the islands. For instance, the stunning Nani Mau Gardens, located just outside of Lahaina, boasts over 250 varieties of orchids spread throughout five different garden areas, set against the backdrop of West Maui Mountains. Also, take time to explore Waimea Canyon – known as “the grand canyon of the pacific” -it offers jaw-dropping views, waterfalls, botanical gardens and hiking trails for every level of fitness. And let’s not forget to try the famous Spam musubi, a tasty meatball wrapped in seaweed!\n\nAll in all, our trip to Hawaii left us with a lifetime of memories, full bellies, and a deep appreciation for the indigenous cultures and natural wonders that make this place so special. Whether you're looking for relaxation, adventure or a little bit of both, Hawaii has something for everyone. So pack your bags and get ready to discover why this destination continues to captivate visitors year after year."
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Dear [Employer],\n\nI am writing to inform you that I have decided to move on from my position at [Company] effective immediately. While this was a difficult decision for me, it is with a heavy heart that I tender my resignation. However, I do so in hopes of pursuing new opportunities and challenges elsewhere.\n\nWorking at your company has been both rewarding and enriching for me, and I want to take this opportunity to thank you and everyone who supported me during my time here. Your guidance, mentorship, and professional development opportunities allowed me to grow personally and professionally, which I will always be grateful for.\n\nPlease let me know if there are any specific tasks or responsibilities I can hand over before I leave. If possible, I would also appreciate some feedback about areas where I could improve as part of my exit evaluation. Rest assured that everything will be completed satisfactorily prior to my departure date.\n\nThank you again for allowing me to contribute to the success of your organization. It has truly been an honor to work alongside such talented individuals. Best wishes for continued growth and prosperity for all stakeholders involved in the company.\n\nSincerely,\n[Your Name]"
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"When designing an inclusive and accessible public transportation system, there are several key factors that should be considered. These include:\n\n1. Physical accessibility: The physical infrastructure of the transportation system must be designed with accessibility in mind, including ramps, lifts, elevators, and other features that make it easier for people with disabilities to board and ride vehicles. This may also involve modifications to stations and stops to ensure they can accommodate everyone.\n2. Communications accessibility: Ensuring that all communication systems used by the transportation provider (e.g., website, customer service lines) are fully accessible is critical. This includes providing alternative formats such as braille or large print materials where necessary.\n3. Staff training: All staff who interact with passengers on a regular basis should receive training on how to provide appropriate assistance to individuals with different needs. They should learn about various assistive devices and techniques available to help passengers navigate the system, including wheelchairs, walkers, hearing aids, etc.\n4. Designated spaces: Creating designated spaces for individuals using mobility aids, seniors, families with young children, pregnant women, or any group that might benefit from priority seating areas during peak hours will improve overall comfort level while traveling.\n5. Signage and Wayfinding: Clear signage throughout the entire transit network, clear maps, and wayfinding tools like digital maps/apps or audio directions can help those with visual impairments or difficulties reading maps find their way around. Additionally, real-time information displayed at bus shelters or through mobile apps allows riders to track schedules, predict arrival times, and choose the most convenient route.\n6. Accommodating unique requirements : Public transportation providers should work closely with local community groups representing diverse populations to identify specific needs and challenges faced by these communities. It’s important to understand individual needs so accommodative measures can be made accordingly to cater to them. For instance, if there is a significant number of visually impaired users within the community, adding Braille signs, high contrast color schemes and tactile strips on platform edges could be beneficial"
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"Here is one way you could write a Python program to print the first 10 Fibonacci numbers using recursion:\n\n```python\ndef fib(n):\n if n <= 1:\n return n\n else:\n return fib(n-1) + fib(n-2)\nfor i in range(1, 11):\n print(fib(i))\n```\nThis code defines a function fib that takes an integer n as input and returns the n-th Fibonacci number by calling itself recursively with two smaller values until it reaches the starting conditions of n = 1, at which point it returns just the value n. The for loop then calls this function with increasing values of i from 1 to 10, printing each result out."
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"vicuna-7b-1-3": {
"category": "<10B",
"display_name": "Vicuna",
"thumb": "https://i.ibb.co/vqPDrPQ/vicuna.png",
"thumb-mid": "https://i.ibb.co/vqPDrPQ/vicuna.png",
"thumb-tiny": "https://i.ibb.co/nBr1wfr/vicuna-tiny.png",
"parameters": "7",
"vram(full)": "13858",
"vram(8bit)": "8254",
"vram(4bit)": "5140",
"vram(gptq)": "11660",
"hub(base)": "lmsys/vicuna-7b-v1.3",
"hub(ckpt)": "N/A",
"hub(gptq)": "TheBloke/vicuna-7B-v1.3-GPTQ",
"hub(gptq_base)": "vicuna-7b-v1.3-GPTQ-4bit-128g.no-act.order",
"default_gen_config": "configs/response_configs/vicuna.yaml",
"desc": "Vicuna 7B v.1.3 is an open-source chatbot trained by fine-tuning LLaMA 7B on user-shared conversations collected from ShareGPT. It is an auto-regressive language model, based on the transformer architecture. The only difference from the previous version is that it was trained with 2x amount of ShareGPT dataset.",
"example1": [],
"example2": [],
"example3": [],
"example4": [],
"ollb_average": 55.62,
"ollb_arc": 50.43,
"ollb_hellaswag": 76.92,
"ollb_mmlu": 48.14,
"ollb_truthfulqa": 47.01
},
"baize-13b": {
"category": "<20B",
"display_name": "Baize",
"thumb": "https://i.ibb.co/j5VpHb0/baize.png",
"thumb-mid": "https://i.ibb.co/kBpkQ48/baize-mid.png",
"thumb-tiny": "https://i.ibb.co/fvpvwq9/baize-tiny.png",
"parameters": "13",
"vram(full)": "26048",
"vram(8bit)": "14740",
"vram(4bit)": "8782",
"vram(gptq)": "11774",
"hub(base)": "project-baize/baize-v2-13b",
"hub(ckpt)": "N/A",
"hub(gptq)": "TheBloke/Project-Baize-v2-13B-GPTQ",
"hub(gptq_base)": "Baize-v2-13B-4bit-128g.no-act-order",
"default_gen_config": "configs/response_configs/baize.yaml",
"desc": "This model is a 13B Baize-v2, trained with supervised fine-tuning (SFT) and self-distillation with feedback (SDF). This checkpoint has been merged with LLaMA 7B so it's ready for use.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Title: \"Exploring the Culture and Beauty of Hawaii\"\nIntroduction\nHave you ever dreamed of escaping to a tropical paradise where crystal clear waters meet white sand beaches? Well, look no further than Hawaii. I recently had the chance to visit this stunning archipelago and was amazed at how it exceeded my expectations. In this article, I'll share some of my favorite memories from my trip, along with tips for planning your own adventure to these beautiful islands.\n\nMust-See Attractions\nThe first thing on my list was the famous Diamond Head Crater in Honolulu. This volcanic tuff cone has become a symbol of Oahu, offering panoramic views of Waikiki Beach below. It's also a popular spot for hikers looking to get their cardio workout in while taking in the scenery. Be sure to pack water and wear comfortable shoes, as the hike can be steep in parts.\n\nAnother attraction not to be missed is the Polynesian Cultural Center. Located on the North Shore of Oahu, this educational center showcases the culture and traditions of Pacific Islanders through performances, demonstrations, and hands-on activities. You can learn about traditional dances, crafts, music, and even try some delicious food. Plus, it's family-friendly and offers discounted tickets for children under age 12.\n\nLocal Cuisine and Culture\nOne of the best ways to experience a new place is through its food. And let me tell you, Hawaiian cuisine does not disappoint. From poke bowls to loco moco, there are so many unique and mouthwatering options to choose from. One of my favorites was Lau Yee Chau Kitchen, located in Chinatown, which serves up some of the best dim sum around.\n\nBut beyond just eating, experiencing the local culture means immersing yourself in daily life. For example, one day we wandered into a farmer's market and were treated to live Hawaiian music, fresh produce, and even artwork made from coconut shells. These kinds of moments will stay with you long after you return home.\n\nConclusion\nIn conclusion, Hawaii is truly a gem of the Pacific, offering something for everyone. Whether you're a beach bum, outdoor enthusiast, history buff, or culinary connoisseur, there's something here for you. So why wait? Start planning your own journey to this magical destination today!"
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Dear [Employer],\n\nI am writing this letter to inform you of my decision to leave my position at your company effective [resignation date]. I have thoroughly enjoyed my time here and am grateful for all the learning experiences, growth opportunities, and support from colleagues and management during my tenure.\n\nWhile I will miss being part of such a dynamic team, I feel it's time for me to pursue new challenges and explore other career paths. My last day with the organization will be [last working day].\n\nPlease accept my sincere appreciation for everything you've done for me. You've been an amazing boss, mentor, and friend throughout my journey here. Your guidance has helped shape who I am today.\n\nOnce again, thank you for giving me the chance to work alongside such dedicated professionals and contribute to the success of our company. Please keep in touch, and I wish everyone continued prosperity and achievement in the future.\n\nYours sincerely,\n\n[Your Name]\n\nP.S.: If there are any outstanding tasks or projects that need closure before my departure, please let me know so we can make sure they are handled properly."
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"- Accessibility features: Designing an accessible transportation system should include features such as ramps for wheelchairs, easy boarding and exiting options, designated seating areas for people with disabilities, and proper signage for those who are visually impaired.\n- Diversity of services: An inclusive transportation system should offer a variety of modes of transportation, including buses, trains, taxis, carpooling, bike-sharing programs, etc., catering to different needs and preferences.\n- Convenience: Public transportation systems must be convenient for users, providing frequent service at affordable rates. This includes ensuring accessibility from residential areas to transport hubs and integrating other forms of transport like bicycles and scooters.\n- Safety: Ensure safety measures are put into place, including well-lit stations, security guards or cameras, and trained staff to assist passengers with disabilities or special needs.\n- Customer support: Offer customer support services, both online and offline, to address any concerns or complaints regarding accessibility or convenience.\nIt's essential to consider these factors while designing an inclusive and accessible public transportation system, so everyone can have equal access to safe, comfortable, and efficient transportation services regardless of their abilities or mobility challenges."
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"```python\ndef fib(n):\n if n <= 2:\n return n\n else:\n return fib(n - 2) + fib(n - 1)\n\nprint(fib(10))\n```\nThe above code defines a function fib which takes in one argument, n, representing the number of Fibonacci numbers we want to calculate. If the value of n is less than or equal to 2, it returns n. Otherwise, it calls itself twice with arguments (n-2) and (n-1), respectively, and then adds their values together before returning them. This process continues until all the required Fibonacci numbers are calculated and returned as output.\n\nIn this example, I have used the function to find the first 10 Fibonacci numbers using the for loop and printed it on screen.\n\nNote: You can also use recursion instead of loops for solving Fibonacci series problems, but since this question is about printing the first 10 Fibonacci numbers, I've opted for looping approach here."
]
],
"ollb_average": 58.45,
"ollb_arc": 56.91,
"ollb_hellaswag": 79.29,
"ollb_mmlu": 49.72,
"ollb_truthfulqa": 47.88
},
"vicuna-13b": {
"category": "<20B",
"display_name": "Vicuna",
"thumb": "https://i.ibb.co/vqPDrPQ/vicuna.png",
"thumb-mid": "https://i.ibb.co/vqPDrPQ/vicuna.png",
"thumb-tiny": "https://i.ibb.co/nBr1wfr/vicuna-tiny.png",
"parameters": "13",
"vram(full)": "26048",
"vram(8bit)": "14740",
"vram(4bit)": "8782",
"vram(gptq)": "N/A",
"hub(base)": "LLMs/Vicuna-13b-v1.1",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/default.yaml",
"desc": "Vicuna 13B is an open-source chatbot trained by fine-tuning LLaMA 13B on user-shared conversations collected from ShareGPT. It is an auto-regressive language model, based on the transformer architecture.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Hawaii is a tropical paradise that offers endless opportunities for adventure and relaxation. With its lush greenery, golden sand beaches, and crystal clear waters, it’s no wonder why this archipelago is one of the most popular tourist destinations in the world. On my recent trip to Hawaii, I was able to experience the best of what this amazing destination has to offer – from breathtaking natural beauty to vibrant cultural experiences.\nOne of the things that stood out during my visit was the rich culture and history of Hawaii. From hula dancing to traditional luaus (a Hawaiian feast with live music), there were plenty of ways to immerse myself in local customs and traditions. At the Hilo Farmers Market on the Big Island, I had the chance to try some delicious exotic fruits like starfruit and passion fruit while watching locals dance the hula. Another fascinating cultural experience was attending a traditional Hawaiian healing ceremony where kahuna (native healers) used ancient techniques to help people overcome physical or emotional challenges. It was truly eye-opening to see how deeply rooted spirituality is in Hawaiian culture."
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Dear [Employer],\n\nI hope this letter finds you well. I am writing to inform you that after much thought and consideration, I have decided to leave [Company] effective [Date]. I want to take this opportunity to express my sincere gratitude for all the opportunities that I have been given during my time here. The skills and experiences gained will be invaluable to my future endeavors.\n\nWorking at [Company] has allowed me to grow both professionally and personally, and I am grateful for the supportive environment and amazing colleagues who made it possible. From day one, I was welcomed with open arms and felt like part of the team. Your trust and guidance have meant everything to me, and I appreciate the faith you had in my abilities.\n\nAs I move forward, I want to ensure a smooth transition for the company and my replacement. Please let me know how I can best assist in this process. I would also be happy to provide any additional information or assistance as needed during this period.\n\nThank you again for the opportunities and growth that [Company] provided me. I wish the entire team continued success and growth in the future.\n\nSincerely,\n[Your Name]"
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"There are several key factors that should be considered when designing an inclusive and accessible public transportation system:\n\n1. Physical Accessibility: The vehicles, stations, and infrastructure should be designed to accommodate people with disabilities or mobility limitations, including ramps, lifts, braille signage, and wheelchair-accessible restrooms.\n2. Communication Accessibility: Real-time information should be provided in multiple formats (e.g., audio, visual, Braille) to ensure access for all users, particularly those who are deaf or hard of hearing. Captions and live subtitles can also assist riders with speech impairments or language barriers.\n3. Social Inclusion: Public transportation systems should strive to reduce social isolation by fostering a welcoming environment for everyone, regardless of their background or socioeconomic status. This includes providing low-income fare options, outreach programs to underserved communities, and culturally sensitive staff training.\n4. Safety and Security: Systems should prioritize safety for all passengers, including measures like emergency response plans, visible security personnel, and technology such as video surveillance and emergency call buttons. Staff training on how to address unruly behavior or hate crimes is equally important."
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"```python\n# Print the first 10 Fibonacci numbers\nfor i in range(10):\n if i == 0 or i == 1:\n print(i)\n else:\n print(i, end=' ')\n print(' ', end=' ')\n```\nExplanation: The above code uses a for loop to iterate from 0 up to (but not including) 10. Within the loop, it checks if the current index is either 0 or 1 using an \"if\" statement. If so, it prints that number. Otherwise, it prints the current number followed by a space using the end parameter of the print() function. This creates a blank line after each pair of numbers as required."
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"vicuna-13b-1-3": {
"category": "<20B",
"display_name": "Vicuna",
"thumb": "https://i.ibb.co/vqPDrPQ/vicuna.png",
"thumb-mid": "https://i.ibb.co/vqPDrPQ/vicuna.png",
"thumb-tiny": "https://i.ibb.co/nBr1wfr/vicuna-tiny.png",
"parameters": "13",
"vram(full)": "26048",
"vram(8bit)": "14740",
"vram(4bit)": "8782",
"vram(gptq)": "11774",
"hub(base)": "lmsys/vicuna-13b-v1.3",
"hub(ckpt)": "N/A",
"hub(gptq)": "TheBloke/vicuna-13b-v1.3.0-GPTQ",
"hub(gptq_base)": "vicuna-13b-v1.3.0-GPTQ-4bit-128g.no-act.order",
"default_gen_config": "configs/response_configs/vicuna.yaml",
"desc": "Vicuna 13B v.1.3 is an open-source chatbot trained by fine-tuning LLaMA 13B on user-shared conversations collected from ShareGPT. It is an auto-regressive language model, based on the transformer architecture. The only difference from the previous version is that it was trained with 2x amount of ShareGPT dataset.",
"example1": [],
"example2": [],
"example3": [],
"example4": [],
"ollb_average": 60.01,
"ollb_arc": 54.61,
"ollb_hellaswag": 80.41,
"ollb_mmlu": 52.88,
"ollb_truthfulqa": 52.14
},
"gpt4-alpaca-13b": {
"category": "<20B",
"display_name": "GPT4-Alpaca-LoRA",
"thumb": "https://i.ibb.co/qDz3HCG/chansung-vector-logo-of-alpaca-made-out-of-machines-Side-shot-39b27595-8202-48a6-97d1-266a745b2a29-r.png",
"thumb-mid": "https://i.ibb.co/Jc79Wb2/alpaca-gpt4-mid.png",
"thumb-tiny": "https://i.ibb.co/vcymWdG/alpaca-gpt4-tiny.png",
"parameters": "13",
"vram(full)": "26048",
"vram(8bit)": "14740",
"vram(4bit)": "8782",
"vram(gptq)": "N/A",
"hub(base)": "elinas/llama-13b-hf-transformers-4.29",
"hub(ckpt)": "LLMs/AlpacaGPT4-LoRA-13B-elina",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/gpt4_alpaca.yaml",
"desc": "GPT4 Alpaca LoRA is LLaMA 13B model fine-tuned on GPT4 generated instruction dataset.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Hawaii truly has something for everyone! Whether you're looking for outdoor adventures like hiking through jungle trails lined by bamboo groves, kayaking down crystal clear waters, surfing at some of the world’s most famous breaks or simply relaxing on white sandy beaches - there is no shortage of activities here to make your vacation one that can only be experienced once in a lifetime. For those who seek an immersive experience into local culture, don't miss out on the many festivals throughout the year including Merrie Monarch Festival celebrating traditional dance forms from across Polynesia; or join a cookery class led by native chefs specializing in tropical fruits such as lychee, pineapple and mango.\nFor art lovers, explore Lahaina which was named America’s last frontier town by author Mark Twain. The city boasts galleries featuring local artists creating everything from pottery and paintings to sculpture and wood carvings while street performers create an entertaining atmosphere for all to enjoy. If museums are more up your alley, Maui also houses several notable institutions displaying artifacts spanning thousands of years, providing a unique insight into the history and culture of this enchanting island chain.\nWhether it’s exploring ancient temples steeped in spiritual tradition or shopping ‘til you drop along Wailea’s exclusive strip malls – you can always find something new around every corner. What are you waiting for? Plan your visit today before someone else gets their first taste of paradise!"
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Yes! Here's a sample resignation letter that I created for you -\nDear ,\n\nAfter careful consideration and thoughtful discussion, I am writing this letter to announce my intention to leave your company after {Time}. The time I have spent at [Company Name] has been very rewarding professionally and personally; during my tenure, I learned many new skills which enriched my career and helped me grow both personally and professionally. I would like to take this opportunity to thank you and everyone else who has supported me during my journey here.\n\nTherefore, without further ado, I must say farewell from this great position but leave behind fond memories. I sincerely hope our paths may cross again one day, if they haven’t already. Wishing all success to you and the rest of team in future endeavors.\n\nSincerely yours,\n[Your name]"
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"There are several important aspects that must be considered while building inclusive and accessible Public Transport System such as making stations and vehicles easily navigable for those who need wheelchairs; providing additional features like Braille signage along platforms and trains, hearing assistance systems inside trains, ramps at train station entrances and exits etc., which facilitate easy mobility for people with disabilities. Furthermore, there should be special concessions made available for disabled passengers - both financially (e.g. discounted fares) and practically (e.g. reserved seats). Additionally, these services should offer priority boardings for people with special needs so they don't have to wait long hours before reaching their destination. Finally, the government can provide extra incentives to private companies operating these services by offering tax rebates on purchasing special equipment for accessibility purposes."
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers in Markdown format",
"```python\ndef fib(n): # Calculates nth Fibonnaci Number\n if (n == 1) or (n == 2):\n return [0] + [1], []\n else:\n return fib(n - 1) + [fib(n - 2)]\nprint('''Fibonnacci Numbers'''') ## Print Heading for List\nfor x in range(3,9):\n '''\\*Fibonnacci number '''\n print(x * \"[1]\" + \"{}\\\" \" + f\"\"**Fibonnacci Number***\")"
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"stable-vicuna-13b": {
"category": "<20B",
"display_name": "Stable-Vicuna",
"thumb": "https://i.ibb.co/b6Vv6Jh/sv.png",
"thumb-mid": "https://i.ibb.co/F4qpgpV/sv-mid.png",
"thumb-tiny": "https://i.ibb.co/zSqHrW1/sv-tiny.png",
"parameters": "13",
"vram(full)": "25874",
"vram(8bit)": "14526",
"vram(4bit)": "8568",
"vram(gptq)": "11774",
"hub(base)": "LLMs/Stable-Vicuna-13B",
"hub(ckpt)": "N/A",
"hub(gptq)": "TheBloke/stable-vicuna-13B-GPTQ",
"hub(gptq_base)": "stable-vicuna-13B-GPTQ-4bit.compat.no-act-order",
"default_gen_config": "configs/response_configs/stablelm.yaml",
"desc": "StableVicuna-13B is a [Vicuna-13B v0](https://huggingface.co/lmsys/vicuna-13b-delta-v0) model fine-tuned using reinforcement learning from human feedback (RLHF) via Proximal Policy Optimization (PPO) on various conversational and instructional datasets.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Whether you’re drawn by its breathtaking beaches or its rich culture, Hawaii offers something for everyone. From ancient ruins to bustling cities, there is no shortage of incredible sights to see on this beautiful island paradise. Here are some top destinations that should not be missed during your next visit!\n\n1. Pearl Harbor - This historical site is one of the most popular tourist attractions in Hawaii, offering visitors the chance to learn about America’s involvement in World War II. Take a guided tour and explore the USS Arizona Memorial, where more than 1000 sailors were killed when Japan attacked Pearl Harbor on December 7th, 1941. Visit the museum and view artifacts from the day of attack, as well as exhibits detailing the events leading up to it.\n2. Hanauma Bay Nature Preserve - Located just outside Honolulu, Hanauma Bay is a stunning nature reserve featuring crystal clear waters, black sandy beach, and exotic marine life. Take a snorkeling or diving excursion with a local company and experience firsthand the amazing array of tropical fish and colorful coral reefs. The perfect spot for families and adventurers alike!\n3. Waimea Canyon Lookout Park - Often referred to as “the Grand Canyon of the Pacific”, Waimea Canyon offers panoramic views of Kauai Island. At over 4 miles long and more than half a mile wide, it is truly a sight to behold. Hike along any number of trails, take a scenic drive through the park, or simply soak up the natural beauty from the lookout point – whatever your preference, you won’t regret a moment spent here.\n4. Polynesian Cultural Center - Learn about the diverse cultures of Hawaii and other South Pacific islands at this fascinating attraction located on the north shore of Oahu. Explore replicas of traditional villages from Fiji, Samoa, Tonga, New Zealand, and other countries, sample delicious food, watch live shows, and even get hands-on experience with traditional crafts like weaving and carving. An unforgettable glimpse into the vibrant history and customs of these unique lands.\n5. Volcanoes National Park - No visit to Hawaii would be complete without seeing the iconic active volcanoes that give this archipelago its name. Within Volcanoes National Park lies Kilauea Caldera, which has been erupting continuously since 1983 and remains one of the most spectacular geological wonders on earth. Take a hiking trail through lush rainforests, witness molten lava flow into the sea, and marvel at the sheer power and majesty of this incredible force of nature. Truly a once-in-a-lifetime experience!"
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"I am writing this letter today to inform you of my decision to leave [Company Name], effective [date].\n\nFirstly, I would like to extend my sincere thanks to you and all employees at the company for providing me with valuable experience and growth opportunities during my tenure here. It has been truly wonderful working alongside such great people.\n\nAlthough it is difficult to part ways after having had so much fun and grown professionally in this organization, there are personal reasons that have led me to make this decision. As such, I feel confident that returning home will be better suited both personally and professionaly than continuing to stay overseas.\n\nOverall, I am grateful for everything that this firm has done to support and encourage me during this time. Please do not hesitate to reach out if I can offer any assistance as I transition away from this position."
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"Here are some important factors to consider when designing an inclusive and accessible public transportation system:\n\n1. Physical Accessibility - Ensure that vehicles and stations are designed with access in mind for people of all ages and abilities. This includes features such as ramps or lifts for wheelchair users, high-contrast signage, Braille lettering, audible directions, priority seating and easy-to-use handrails. Additionally, ensure routes have wide sidewalks, crossings with audio cues, clear pedestrian signals, and designated drop-off points.\n2. Universal Design Principles - Apply universal design principles to create a transportation system where everyone can use it easily and efficiently without any barriers. By making modifications to your existing system based on specific needs (e.g., those who require mobility assistance devices), you will be able to provide equal opportunities for all riders.\n3. Inclusivity - Ensuring that every rider has equitable treatment involves providing services tailored to meet different needs. For instance, you might add elevators at subway stops specifically for passengers using strollers, offer more frequent buses or modified vehicles to accommodate seniors, expand paratransit options for disabled individuals, and reduce fares for low-income residents.\n4. Multimodal Approach - Develop transport systems that combine multiple modes instead of relying solely on one type of vehicle. This way, riders can choose from various methods like bike lanes, taxis, ride-sharing, trains, bus rapid transit, trams, light railways, streetcars, trolleybuses, and shuttles depending on their preferences and requirements.\n5. Equity and Diversity Considerations - Provide a range of choices that encourage usage across demographics by offering cost-effective and safe alternatives. These include provision of reliable public bicycles, scooters, electric cars, and carpools; community programs that enable ride-shares between neighborhoods via sustainable means; and improved connectivity throughout urban centres.\n6. Affordability - Make sure affordable prices do not discourage potential customers due to economic constraints. Your fare should be set up so disadvantaged members of society remain financially stable while still gaining access to necessary amenities. Subsidies for low-income earners is often"
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"```python\ndef fib_num():\n if not (n or m):\n return -2\n else : \n n = max(m,n) + min(m,n)\n return n\n\nprint(\"First\",f\"{fib_num()}\")\nfor i in range(9,-1, -1):\n fib_result=fib_num()\n print(\"Next\",fib_result,\"of {}\\n\".format(i))```\nOutput: \nFirst 0 \nNext 0 of 0\nNext 1 of 1\nNext 1 of 1\nNext 2 of 3\nNext 3 of 5\nNext 5 of 8\nNext 8 of 13\nNext 13 of 21\nNext 21 of 34\n```"
]
],
"ollb_average": 57.68,
"ollb_arc": 53.41,
"ollb_hellaswag": 78.57,
"ollb_mmlu": 50.37,
"ollb_truthfulqa": 48.36
},
"starchat-15b": {
"category": "<20B",
"display_name": "StarChat",
"thumb": "https://i.ibb.co/5hCbFsK/starcoder-alpha.png",
"thumb-mid": "https://i.ibb.co/gScBL35/starcoder-alpha-mid.png",
"thumb-tiny": "https://i.ibb.co/416cZ3S/starcoder-alpha-tiny.png",
"parameters": "15.5",
"vram(full)": "30548",
"vram(8bit)": "17462",
"vram(4bit)": "10126",
"vram(gptq)": "N/A",
"hub(base)": "HuggingFaceH4/starchat-alpha",
"hub(ckpt)": "N/A",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/starchat.yaml",
"desc": "StarChat is a series of language models that are fine-tuned from StarCoder to act as helpful coding assistants. StarChat Alpha is the first of these models, and as an alpha release is only intended for educational or research purpopses.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"I'm sorry I don't have access to the internet at this time so i can not provide you with any relevant information regarding my capabilities as of now!"
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Of course! Here's an example of a resignation letter that can be used as guidance:\n\n```Subject: Resignation Letter - [Date]\n\nDear [Employer Name],\n\nI am writing to inform you that I will be resigning from my position at [Company Name]. As a member of your team, I have had the pleasure of working with some terrific colleagues over the years. However, given our shared history of diverse backgrounds, it has become clear that we are not going to continue in this role together. \n\nWhile there may still be challenges or personal issues which need resolution before I can fully leave, please know that I would like nothing more than the opportunity to contribute to the success of [Company Name] moving forward. While I wish to move on quickly now due to these circumstances, I hope that we can come back together soon enough and build something amazing together.\n\nThank you again for everything you do here. It has been a privilege to work alongside such talented people during my time at [Company Name]. I look forward to continuing the partnership beyond just this one occasion. If possible, I'd love to take advantage of any remaining vacancies within your organization so that I can start fresh somewhere new. Please let me know if there is anything else I can assist you with regarding this matter.\n\nSincerely,\n[Your Full Name]\n```\nThis letter emphasizes both the reason why you're stepping down (to resolve personal issues) and the value you bring to the company by being involved. You also mention potential future openings available afterward but provide no specific details about when they might occur since flexibility is important. Additionally, you don't address what specifically led up to your departure, which could make the transition feel sudden rather than gradual. Finally, the tone is formal yet respectful instead of casual and direct. This type of letter provides strong signals to recruiters that you want them to keep contacting you even though things aren't quite right."
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"Inclusion: Consider the needs of people with disabilities, seniors, elderly individuals, children, and others who may not have access to modern technology or infrastructure for travel options such as buses, trains, subways, etc.\n\nAccessibility: Ensure that all modes of transportation are easily accessible by wheelchairs/walkers if necessary; ensure there's ample parking spaces available at each station so everyone has somewhere safe to ride their vehicles (e.g., side streets); provide alternative means of payment like cashless payments via contactless cards instead of physical money in order to make it more affordable for those without bank accounts or credit card balances; ensure that transit workers receive proper training on how to handle these types of issues should they arise.\n\nCost-effectiveness: The cost per person could be lower than traditional methods of transportation especially considering the high number of riders using this mode of transportation which can lead to higher ticket prices overall compared to other forms of transportation like cars or airplanes. This will also reduce government revenue spent on taxicab companies since many governments spend large amounts of their budgets on providing free transportation services today but don't necessarily use them often enough to justify spending much time and resources improving upon them.\n\nSimplicity: In addition to accessibility concerns above, simplicity matters because every additional step someone must take to get from point A to B increases the amount of friction involved making it less likely that anyone will do it. For example, having multiple stops along the way requires a lot more effort and mental energy just to figure out where one stop ends versus another start whereas walking might only require two steps even though both still involve some form of movement. Simpler systems tend to perform better and therefore need fewer resources to operate effectively."
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"Sure, here's an example Python program that calculates the first ten Fibonacci numbers:\n\n```python\n def fib(n):\n if n <= 2:\n return 1\n else:\n return (fib(n-1) + fib(n-2))\n\n for i in range(10):\n print(fib(i), end=\" \")\n```\nThis program uses recursion to calculate each number in the sequence, using the formula F_n = F_(n-1) + F_(n-2). The function starts by checking if the input value of n is less than or equal to two, since these values are already known. If not, it calls itself recursively with smaller values of n, until it reaches the base case where n=1. At this point, it returns the result of adding the previous two results together. Finally, we loop through all possible inputs from zero up to but not including ten, printing out each calculated number along the way."
]
],
"ollb_average": 38.85,
"ollb_arc": 31.57,
"ollb_hellaswag": 49.43,
"ollb_mmlu": 30.76,
"ollb_truthfulqa": 43.66
},
"starchat-beta-15b": {
"category": "<20B",
"display_name": "StarChat",
"thumb": "https://i.ibb.co/x28Z7LD/starcoder-beta.png",
"thumb-mid": "https://i.ibb.co/pLYWjdH/starcoder-beta-mid.png",
"thumb-tiny": "https://i.ibb.co/dcGLNpQ/starcoder-beta-tiny.png",
"parameters": "15.5",
"vram(full)": "30548",
"vram(8bit)": "17462",
"vram(4bit)": "10126",
"vram(gptq)": "14642",
"hub(base)": "HuggingFaceH4/starchat-beta",
"hub(ckpt)": "N/A",
"hub(gptq)": "TheBloke/starchat-beta-GPTQ",
"hub(gptq_base)": "gptq_model-4bit- -1g",
"default_gen_config": "configs/response_configs/starchat.yaml",
"desc": "StarChat is a series of language models that are trained to act as helpful coding assistants. StarChat Beta is the second model in the series, and is a fine-tuned version of [StarCoderPlus](https://huggingface.co/bigcode/starcoderplus) that was trained on an [\"uncensored\"](https://erichartford.com/uncensored-models) variant of the [openassistant-guanaco dataset](https://huggingface.co/datasets/timdettmers/openassistant-guanaco). We found that removing the in-built alignment of the OpenAssistant dataset boosted performance on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard) and made the model more helpful at coding tasks. However, this means that model is likely to generate problematic text when prompted to do so and should only be used for educational and research purposes.",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Aloha! I recently had the incredible opportunity to visit beautiful Hawaii for the first time, and it truly did not disappoint. The culture was so rich and diverse, from the traditional luaus to the unique art forms like hula and ukulele playing. One of my favorite parts of the trip was exploring all the different beaches and snorkeling in the clear blue waters. Here are some highlights:\n\n1. Pearl Harbor: This was such an impactful experience that everyone should have the chance to see. It's hard to imagine what life was like there during World War II, but you can really get a sense of how much history this place holds. Make sure to take a tour with a knowledgeable guide who will tell you stories about the events of that day.\n\n2. USS Arizona Memorial: If you only do one thing while in Oahu, make it this memorial. You'll feel a mix of emotions as you walk through the rows of names on the wall, remembering those who lost their lives onboard this ship. Be prepared to spend at least 30 minutes here, if not longer.\n\n3. North Shore: For surfers and sun worshippers alike, the north shore of Oahu is a must-visit destination. Watch the pros catch massive waves or try your hand (and feet) at surfing yourself. There are plenty of places to rent boards and lessons available for beginners.\n\n4. Diamond Head Crater Trail: Get amazing views of Waikiki and the surrounding area by climbing up to the top of Diamond Head crater. It's an easy hike with great signage along the way. Once you reach the summit, you can explore the park and even check out the old observatory building.\n\n5. Halona Blowhole: Located near Kaimana Beach, this blowhole is pretty cool to watch. As the ocean crashes against the lava rock formation, water shoots straight up into the air creating a geyser effect. Just keep an eye on the tide schedule because the best viewing times depend on when the sea is high or low.\n\nOverall, I highly recommend taking advantage of everything Hawaii has to offer - from its stunning natural landscapes to its vibrant local culture. Mahalo!"
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Sure! Here's an example of a possible template that can be used as a guide:\n\n[Your Name]\n[Current Address]\n[City, State ZIP Code]\n[Recipient's Company Name]\n[Company Address]\n[City, State ZIP Code]\nDear [Name of Recipient],\n\nI am writing to formally announce that I will be resigning from my position at [current company name]. My last day with the organization will be [date].\n\nDuring my time here, I have learned a great deal and grown professionally thanks to the supportive environment and many challenging assignments I was given. I would like to take this opportunity to thank all those who mentored and encouraged me during my tenure.\n\nAdditionally, I want to extend my appreciation to everyone in the team for their friendship and camaraderie over these past few years. Working together has been one of the highlights of my career, and I will miss our daily interactions and collaborations.\n\nFinally, I wish the best for your organization moving forward and hope we can maintain a professional relationship in the future. Please let me know if there are any open positions within your organization that might suit my skills and experience.\n\nThank you again for everything, and please accept this letter as formal notification of my resignation.\n\nBest regards,\n\n[Your Signature]\n[Your Full Name]"
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"Designing an inclusive and accessible public transportation system involves taking into account several key factors:\n\n1. Route planning: Consider the needs of people with disabilities, such as providing ramps or lifts for wheelchairs, ensuring that buses have enough space for wheelchair users, and offering alternative routes for those who cannot use stairs.\n\n2. Ticketing: Make sure ticket machines are accessible to everyone, including people with visual impairments, and offer options like cashless payment systems or assistance from staff if needed.\n\n3. Information & communication: Provide clear and accurate information about timetables, schedules, and accessibility features in multiple formats (e.g., braille, large print) and make it easily available online and at stations/stops.\n\n4. Training & awareness: Train employees and provide ongoing awareness training for all staff on how to interact with passengers with various abilities, including those with hearing loss, vision impairment, or cognitive disabilities.\n\n5. Safety & security: Ensure that the system is safe and secure for everyone, especially individuals with disabilities, by implementing measures such as well-lit stations and vehicles, audible alarms, and trained emergency personnel.\n\n6. Flexibility: Offer flexible travel options, such as extended hours or reduced fares for seniors or persons with disabilities, and allow for real-time updates to accommodate changing needs."
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"Here's an example Python program that uses recursion to calculate the first 10 Fibonacci numbers:\n\n```python\ndef fib(n):\n if n < 2:\n return n\n else:\n return (fib(n-1) + fib(n-2))\n\nfor i in range(10):\n print(fib(i), end=\" \")\n```\nThis will output the following result:\n\n0 1 1 2 3 5 8 13 21 34\n\nLet me know if you have any questions!"
]
],
"ollb_average": 55.78,
"ollb_arc": 52.47,
"ollb_hellaswag": 80.59,
"ollb_mmlu": 42.85,
"ollb_truthfulqa": 47.22
},
"llama-deus-7b": {
"category": "<10B",
"display_name": "LLaMA Deus",
"thumb": "https://i.ibb.co/4mH9LRQ/llama-deus.png",
"thumb-mid": "https://i.ibb.co/4mH9LRQ/llama-deus.png",
"thumb-tiny": "https://i.ibb.co/YPkqHQB/llama-deus-tiny.png",
"parameters": "7",
"vram(full)": "13858",
"vram(8bit)": "8254",
"vram(4bit)": "5140",
"vram(gptq)": "11660",
"hub(base)": "elinas/llama-7b-hf-transformers-4.29",
"hub(ckpt)": "teknium/llama-deus-7b-v3-lora",
"hub(gptq)": "TheBloke/llama-deus-7b-v3-GPTQ",
"hub(gptq_base)": "llama-deus-7b-v3-GPTQ-4bit-128g.no-act.order",
"default_gen_config": "configs/response_configs/default.yaml",
"desc": "LLaMA Deus is LLaMA 7B model fine-tuned on [GPTeacher](https://github.com/teknium1/GPTeacher)(General Instruct, Code Instruct, Roleplay Instruct, Roleplay V2 Instruct), GPT4-LLM Uncensored + Unnatural Instructions, [WizardLM Uncensored](https://huggingface.co/datasets/ehartford/wizard_vicuna_70k_unfiltered)",
"example1": [
[
"Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions.",
"Hawaii was like stepping into a tropical paradise - vibrant colors, warm breezes, and lush greenery at every turn. From snorkeling in crystal clear waters to exploring ancient volcanoes and experiencing authentic Polynesian culture, there's no shortage of adventure here! Here's our guide to making your dream vacation to Hawaii a reality.\nAs soon as we touched down on Maui, we were struck by how different this island feels from anywhere else. The air is thick with palm trees and sweet fragrances of blooming flowers, and the sounds of traditional music can be heard wafting through the streets. One must-visit attraction is Iao Valley State Monument, which boasts stunning views of the West Maui Mountains. The site of ancient volcanic craters makes for a unique sight that you won't find anywhere else in the world.\nAnother great opportunity to immerse yourself in local traditions comes during Luau performances. These feasts often include hula dancers who tell tales through their moves while serving up delicious island cuisine such as pū‘ohe‘e (steamed crab legs) and kalua ‘āna (pig roast). After indulging in some exotic foods, visitors can experience firsthand what it means to dance the hula by taking part in one of many scheduled workshops available throughout the islands.\nA visit to Honolulu wouldn't be complete without seeing Pearl Harbor Memorial and National Cemetery. This historic site commemorates those who lost their lives during World War II and is accompanied by moving exhibits detailing events leading up to and following the attack. If you have the chance, consider taking a tour guided by a knowledgeable docent – they can offer incredible insights into the significance of the memorial. And remember to take time for reflection and respect for the sacrifices made by others.\nFor nature lovers, there are plenty of exciting activities to fill out your days including hiking through Haleakala Crater, Snorkelling along Molokini Crater, surfing and even camping within various state parks, all surrounded by breath-taking scenery. We also had the pleasure of driving across the roadless states to hike to the top of Pidiania Peake, where the summit provides panoramic views of neighboring islands. Overall, our journey provided enough excitement and tranquility to make us eager for our next visit. So pack your bags and don't miss out on the opportunity to explore these magical places we call home."
]
],
"example2": [
[
"Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?",
"Dear [Employer],\nAs you know, I have been working at ABC Inc. for the past five years, where I have had the opportunity to learn and grow in my role as a software developer. Recently, I received another job offer from XYZ Corp. that I simply cannot pass up due to its location, culture, and career growth potential.\nWhile this decision wasn't easy to make, I am confident in saying that moving to XYZ Corp. will allow me to further develop my skills and reach new professional heights. It has truly been a pleasure working alongside you and the rest of the team at ABC Inc., and I would like to express my deepest gratitude for the opportunities provided.\nPlease accept this letter as my formal resignation effective two weeks from today. I look forward to celebrating our successes together and wishing you all the best in your future endeavors.\nThank you again for everything.\nSincerely,\n[Your Name]"
]
],
"example3": [
[
"What factors would you consider when designing an inclusive and accessible public transportation system?",
"When designing an inclusive and accessible public transportation system, several factors should be considered. These include:\n1.Accessibility features - The system must have ramps, lifts, elevators, and other facilities that cater to passengers with disabilities such as wheelchairs, walkers, and crutches.\n2.Route planning - The routes must be planned to ensure easy access for all passengers, including those with physical limitations. This includes having stop signs at ground level rather than requiring users to navigate curbs or steps.\n3.Signage - Clear signage must be provided throughout the system to guide users from one place to another. All signs must meet international standards to make them easily understood by passengers with visual impairments.\n4.Information available - Passengers must be able to quickly and easily access information on schedules, fares, and route changes. This can be done through smart systems that allow customers to plan their journey digitally using real time updates.\n5.Staff training - All staff working within the transportation system must undergo extensive training to be sensitive to the needs of passengers with disabilities and how to assist them effectively.\n6.Customer feedback - Regularly collect feedback from passengers with disabilities to identify areas where improvements need to be made to the system. Use this input to continually enhance accessibility services."
]
],
"example4": [
[
"Write a python program to print the first 10 Fibonacci numbers",
"Here's one possible implementation of a Python program that prints out the first ten Fibonacci numbers:\n```python\ndef fib(n):\n if n <= 1:\n return n\n else:\n return fib(n - 1) + fib(n - 2)\n \ncount = 0\nfor i in range(fib_limit=9):\n num = fib(i)\n print(\"Fiboniculus No {}: {}\".format(count+1,num))\n\n\nfib_limit = int(input()) # Change this value from 9 to whatever you want the script to compute up until\n\nprint() # Add this line at the bottom to close the for loop properly"
]
],
"ollb_average": -1,
"ollb_arc": -1,
"ollb_hellaswag": -1,
"ollb_mmlu": -1,
"ollb_truthfulqa": -1
},
"evolinstruct-vicuna-7b": {
"category": "<10B",
"display_name": "EvolInstruct Vicuna",
"thumb": "https://i.ibb.co/xHDRjLS/evol-vicuna.png",
"thumb-mid": "https://i.ibb.co/xHDRjLS/evol-vicuna.png",
"thumb-tiny": "https://i.ibb.co/5LQMNkY/evol-vicuna-tiny.png",
"parameters": "7",
"vram(full)": "13858",
"vram(8bit)": "8254",
"vram(4bit)": "5140",
"vram(gptq)": "N/A",
"hub(base)": "elinas/llama-7b-hf-transformers-4.29",
"hub(ckpt)": "LLMs/Vicuna-LoRA-EvolInstruct-7B",
"hub(gptq)": "N/A",
"hub(gptq_base)": "N/A",
"default_gen_config": "configs/response_configs/default.yaml",
"desc": "This is LLaMA 7B model fine-tuned on [WizardLM's EvolInstruct](https://github.com/nlpxucan/WizardLM) dataset re-organized into conversational format in Vicuna style.",