-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
Copy pathmodel_registry.py
1002 lines (877 loc) · 26.5 KB
/
model_registry.py
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
"""Additional information of the models."""
from collections import namedtuple, OrderedDict
from typing import List
ModelInfo = namedtuple("ModelInfo", ["simple_name", "link", "description"])
model_info = OrderedDict()
def register_model_info(
full_names: List[str], simple_name: str, link: str, description: str
):
info = ModelInfo(simple_name, link, description)
for full_name in full_names:
model_info[full_name] = info
def get_model_info(name: str) -> ModelInfo:
if name in model_info:
return model_info[name]
else:
# To fix this, please use `register_model_info` to register your model
return ModelInfo(
name, "", "Register the description at fastchat/model/model_registry.py"
)
register_model_info(
[
"IEITYuan/Yuan2-2B-Janus-hf",
"IEITYuan/Yuan2-2B-hf",
"IEITYuan/Yuan2-51B-hf",
"IEITYuan/Yuan2-102B-hf",
],
"IEIT-Yuan2",
"https://github.com/IEIT-Yuan/Yuan-2.0",
"Yuan2.0 is a new generation Fundamental Large Language Model developed by IEIT System.",
)
register_model_info(
[
"chatgpt-4o-latest",
"chatgpt-4o-latest-20240903",
"gpt-4o-mini-2024-07-18",
"gpt-4o-2024-08-06",
"gpt-4o-2024-05-13",
],
"GPT-4o",
"https://openai.com/index/hello-gpt-4o/",
"The flagship model across audio, vision, and text by OpenAI",
)
register_model_info(
[
"grok-2-2024-08-13",
"grok-2-mini-2024-08-13",
],
"Grok-2",
"https://x.ai/blog/grok-2",
"Grok-2 by xAI",
)
register_model_info(
[
"claude-3-5-sonnet-20240620",
],
"Claude 3.5",
"https://www.anthropic.com/news/claude-3-5-sonnet",
"Claude by Anthropic",
)
register_model_info(
[
"llama-3.2-vision-90b-instruct",
"llama-3.2-vision-11b-instruct",
"llama-3.2-3b-instruct",
"llama-3.2-1b-instruct",
"llama-3.1-405b-instruct-bf16",
"llama-3.1-405b-instruct-fp8",
"llama-3.1-405b-instruct",
"llama-3.1-70b-instruct",
"llama-3.1-8b-instruct",
],
"Llama 3.1",
"https://llama.meta.com/",
"Open foundation and chat models by Meta",
)
register_model_info(
[
"gemini-1.5-pro-exp-0827",
"gemini-1.5-pro-exp-0801",
"gemini-1.5-flash-exp-0827",
"gemini-1.5-flash-8b-exp-0827",
"gemini-1.5-pro-api-0409-preview",
"gemini-1.5-pro-tuned",
"gemini-1.5-pro-api-preview",
"gemini-1.5-flash-api-preview",
"gemini-1.5-pro-api-0514",
"gemini-1.5-flash-api-0514",
"gemini-advanced-0514",
],
"Gemini",
"https://deepmind.google/technologies/gemini/",
"Gemini by Google",
)
register_model_info(
[
"mistral-large-2407",
],
"Mistral",
"https://mistral.ai/news/mistral-large-2407/",
"Mistral Large 2",
)
register_model_info(
[
"gpt-4-turbo",
"gpt-4-turbo-2024-04-09",
"gpt-4-1106-preview",
"gpt-4-0125-preview",
"gpt2-chatbot",
"im-also-a-good-gpt2-chatbot",
"im-a-good-gpt2-chatbot",
],
"GPT-4-Turbo",
"https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo",
"GPT-4-Turbo by OpenAI",
)
register_model_info(
["jamba-1.5-large", "jamba-1.5-mini"],
"Jamba 1.5",
"https://www.ai21.com/jamba",
"Jamba by AI21 Labs",
)
register_model_info(
[
"gemma-2-27b-it",
"gemma-2-9b-it",
"gemma-2-2b-it",
"eureka-chatbot",
"gemma-2-9b-it-simpo",
],
"Gemma 2",
"https://ai.google.dev/gemma",
"Gemma 2 by Google",
)
register_model_info(
[
"claude-3-haiku-20240307",
"claude-3-sonnet-20240229",
"claude-3-opus-20240229",
"claude-2.1",
"claude-2.0",
"claude-1",
],
"Claude",
"https://www.anthropic.com/news/claude-3-family",
"Claude by Anthropic",
)
register_model_info(
["deepseek-coder-v2", "deepseek-v2-api-0628", "deepseek-v2.5"],
"DeepSeek Coder v2",
"https://huggingface.co/deepseek-ai/DeepSeek-Coder-V2-Instruct",
"An advanced code model by DeepSeek",
)
register_model_info(
["nemotron-4-340b"],
"Nemotron-4 340B",
"https://huggingface.co/nvidia/Nemotron-4-340B-Instruct",
"Cutting-edge Open model by Nvidia",
)
register_model_info(
["llama-3-70b-instruct", "llama-3-8b-instruct"],
"Llama 3",
"https://ai.meta.com/blog/meta-llama-3/",
"Open foundation and chat models by Meta",
)
register_model_info(
["athene-70b", "athene-70b-0725"],
"Athene-70B",
"https://nexusflow.ai/blogs/athene",
"A large language model by NexusFlow",
)
register_model_info(
[
"qwen2.5-72b-instruct",
"qwen2-72b-instruct",
"qwen-max-0403",
"qwen-max-0428",
"qwen-max-0919",
"qwen-plus-0828",
"qwen2-vl-7b-instruct",
"qwen-vl-max-0809",
],
"Qwen Max",
"https://help.aliyun.com/zh/dashscope/developer-reference/model-introduction",
"The Frontier Qwen Model by Alibaba",
)
register_model_info(
[
"gpt-3.5-turbo",
"gpt-3.5-turbo-0125",
"gpt-3.5-turbo-1106",
"gpt-3.5-turbo-0314",
"gpt-3.5-turbo-0613",
],
"GPT-3.5",
"https://platform.openai.com/docs/models/gpt-3-5",
"GPT-3.5-Turbo by OpenAI",
)
register_model_info(
["yi-lightning", "yi-lightning-lite", "yi-large-preview", "yi-large", "yi-vision"],
"Yi-Large",
"https://x.com/01AI_Yi/status/1789894091620458667",
"State-of-the-art model by 01 AI",
)
register_model_info(
["yi-1.5-34b-chat", "yi-34b-chat", "yi-6b-chat"],
"Yi-Chat",
"https://huggingface.co/01-ai/",
"A large language model by 01 AI",
)
register_model_info(
[
"phi-3-medium-4k-instruct",
"phi-3-small-8k-instruct",
"phi-3-mini-4k-instruct",
"phi-3-mini-4k-instruct-june-2024",
"phi-3-mini-128k-instruct",
"phi-3-vision-128k-instruct",
"phi-3.5-vision-instruct",
"llava-onevision-qwen2-72b-ov",
"llava-onevision-qwen2-72b-ov-chat",
],
"Phi-3",
"https://azure.microsoft.com/en-us/blog/introducing-phi-3-redefining-whats-possible-with-slms/",
"A capable and cost-effective small language models (SLMs) by Microsoft",
)
register_model_info(
[
"minicpm-v-2_6",
],
"MiniCPM-V 2.6",
"https://huggingface.co/openbmb/MiniCPM-V-2_6",
"MiniCPM-V 2.6 by OpenBMB",
)
register_model_info(
["reka-core-20240904", "reka-core-20240722", "reka-core-20240501"],
"Reka Core",
"https://www.reka.ai/news/reka-core-our-frontier-class-multimodal-language-model",
"Frontier Multimodal Language Model by Reka",
)
register_model_info(
["gemini-pro", "gemini-pro-dev-api"],
"Gemini",
"https://blog.google/technology/ai/google-gemini-pro-imagen-duet-ai-update/",
"Gemini by Google",
)
register_model_info(
[
"reka-flash-20240904",
"reka-flash-20240722",
"reka-flash-preview-20240611",
"reka-flash",
"reka-flash-online",
],
"Reka Flash",
"https://www.reka.ai/news/reka-flash-efficient-and-capable-multimodal-language-models",
"Multimodal model by Reka",
)
register_model_info(
["command-r-plus", "command-r-plus-04-2024", "command-r-plus-08-2024"],
"Command-R-Plus",
"https://txt.cohere.com/command-r-plus-microsoft-azure/",
"Command R+ by Cohere",
)
register_model_info(
["command-r", "command-r-03-2024", "command-r-08-2024"],
"Command R",
"https://txt.cohere.com/command-r/",
"Command R by Cohere",
)
register_model_info(
["gemma-1.1-7b-it", "gemma-1.1-2b-it", "gemma-7b-it", "gemma-2b-it"],
"Gemma",
"https://blog.google/technology/developers/gemma-open-models/",
"Gemma by Google",
)
register_model_info(
[
"codestral-2405",
"mixtral-8x22b-instruct-v0.1",
],
"Mixtral of experts",
"https://mistral.ai/news/mixtral-8x22b/",
"A Mixture-of-Experts model by Mistral AI",
)
register_model_info(
[
"mixtral-8x7b-instruct-v0.1",
"mistral-large-2402",
"mistral-large-2407",
"mistral-medium",
"mistral-next",
"mistral-7b-instruct-v0.2",
"mistral-7b-instruct",
"pixtral-12b-2409",
],
"Mixtral of experts",
"https://mistral.ai/news/mixtral-of-experts/",
"A Mixture-of-Experts model by Mistral AI",
)
register_model_info(
[
"qwen1.5-110b-chat",
],
"Qwen 1.5",
"https://qwenlm.github.io/blog/qwen1.5-110b/",
"The First 100B+ Model of the Qwen1.5 Series",
)
register_model_info(
[
"qwen1.5-72b-chat",
"qwen1.5-32b-chat",
"qwen1.5-14b-chat",
"qwen1.5-7b-chat",
"qwen1.5-4b-chat",
"qwen1.5-1.8b-chat",
"qwen1.5-0.5b-chat",
"qwen-14b-chat",
],
"Qwen 1.5",
"https://qwenlm.github.io/blog/qwen1.5/",
"A large language model by Alibaba Cloud",
)
register_model_info(
["glm-4-plus", "glm-4-0520", "glm-4-0116"],
"GLM-4",
"https://bigmodel.cn/dev/howuse/model",
"Next-Gen Foundation Model by Zhipu AI",
)
register_model_info(
["snowflake-arctic-instruct"],
"Snowflake Arctic Instruct",
"https://www.snowflake.com/blog/arctic-open-efficient-foundation-language-models-snowflake/",
"Dense-MoE transformer by Snowflake AI",
)
register_model_info(
["dbrx-instruct", "dbrx-next"],
"DBRX Instruct",
"https://www.databricks.com/blog/introducing-dbrx-new-state-art-open-llm",
"DBRX by Databricks Mosaic AI",
)
register_model_info(
[
"zephyr-orpo-141b-A35b-v0.1",
],
"Zephyr 141B-A35B",
"https://huggingface.co/HuggingFaceH4/zephyr-orpo-141b-A35b-v0.1",
"ORPO fine-tuned of Mixtral-8x22B-v0.1",
)
register_model_info(
["starling-lm-7b-beta", "starling-lm-7b-alpha"],
"Starling-LM-7B",
"https://starling.cs.berkeley.edu/",
"An open model trained using RLAIF by Berkeley",
)
register_model_info(
["qwen-14b-chat"],
"Qwen",
"https://huggingface.co/Qwen",
"A large language model by Alibaba Cloud",
)
register_model_info(
["bard-feb-2024", "bard-jan-24-gemini-pro"],
"Bard",
"https://bard.google.com/",
"Bard by Google",
)
register_model_info(
[
"gemini-1.0-pro-vision",
"gemini-1.5-pro-preview-0409",
],
"Gemini",
"https://blog.google/technology/ai/google-gemini-pro-imagen-duet-ai-update/",
"Gemini by Google",
)
register_model_info(
["stripedhyena-nous-7b"],
"StripedHyena-Nous",
"https://huggingface.co/togethercomputer/StripedHyena-Nous-7B",
"A chat model developed by Together Research and Nous Research.",
)
register_model_info(
["solar-10.7b-instruct-v1.0"],
"SOLAR-10.7B-Instruct",
"https://huggingface.co/upstage/SOLAR-10.7B-Instruct-v1.0",
"A model trained using depth up-scaling by Upstage AI",
)
register_model_info(
["gpt-4-turbo-browsing"],
"GPT-4-Turbo with browsing",
"https://platform.openai.com/docs/assistants/overview",
"GPT-4-Turbo with browsing by OpenAI",
)
register_model_info(
["gpt-4", "gpt-4-0314", "gpt-4-0613"],
"GPT-4",
"https://openai.com/research/gpt-4",
"GPT-4 by OpenAI",
)
register_model_info(
["claude-instant-1", "claude-instant-1.2"],
"Claude Instant",
"https://www.anthropic.com/index/introducing-claude",
"Claude Instant by Anthropic",
)
register_model_info(
["llama-2-70b-chat", "llama-2-34b-chat", "llama-2-13b-chat", "llama-2-7b-chat"],
"Llama 2",
"https://ai.meta.com/llama/",
"Open foundation and fine-tuned chat models by Meta",
)
register_model_info(
["olmo-7b-instruct"],
"OLMo-7B",
"https://huggingface.co/allenai/OLMo-7B-Instruct",
"OLMo by Allen AI",
)
register_model_info(
[
"vicuna-33b",
"vicuna-33b-v1.3",
"vicuna-13b",
"vicuna-13b-v1.5",
"vicuna-7b",
"vicuna-7b-v1.5",
],
"Vicuna",
"https://lmsys.org/blog/2023-03-30-vicuna/",
"A chat assistant fine-tuned on user-shared conversations by LMSYS",
)
register_model_info(
[
"codellama-70b-instruct",
"codellama-34b-instruct",
"codellama-13b-instruct",
"codellama-7b-instruct",
],
"Code Llama",
"https://ai.meta.com/blog/code-llama-large-language-model-coding/",
"Open foundation models for code by Meta",
)
register_model_info(
["openchat-3.5-0106", "openchat-3.5"],
"OpenChat 3.5",
"https://github.com/imoneoi/openchat",
"An open model fine-tuned on Mistral-7B using C-RLFT",
)
register_model_info(
["deepseek-llm-67b-chat"],
"DeepSeek LLM",
"https://huggingface.co/deepseek-ai/deepseek-llm-67b-chat",
"An advanced language model by DeepSeek",
)
register_model_info(
["stripedhyena-nous-7b"],
"StripedHyena-Nous",
"https://huggingface.co/togethercomputer/StripedHyena-Nous-7B",
"A chat model developed by Together Research and Nous Research.",
)
register_model_info(
["nous-hermes-2-mixtral-8x7b-dpo"],
"Nous-Hermes-2-Mixtral-8x7B-DPO",
"https://huggingface.co/NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
"Nous Hermes finetuned from Mixtral 8x7B",
)
register_model_info(
["llama2-70b-steerlm-chat"],
"Llama2-70B-SteerLM-Chat",
"https://huggingface.co/nvidia/Llama2-70B-SteerLM-Chat",
"A Llama fine-tuned with SteerLM method by NVIDIA",
)
register_model_info(
["pplx-70b-online", "pplx-7b-online"],
"pplx-online-llms",
"https://blog.perplexity.ai/blog/introducing-pplx-online-llms",
"Online LLM API by Perplexity AI",
)
register_model_info(
["openhermes-2.5-mistral-7b"],
"OpenHermes-2.5-Mistral-7B",
"https://huggingface.co/teknium/OpenHermes-2.5-Mistral-7B",
"A mistral-based model fine-tuned on 1M GPT-4 outputs",
)
register_model_info(
["tulu-2-dpo-70b"],
"Tulu 2",
"https://huggingface.co/allenai/tulu-2-dpo-70b",
"An instruction and RLHF model by UW/AllenAI",
)
register_model_info(
["chatglm3-6b", "chatglm2-6b", "chatglm-6b"],
"ChatGLM",
"https://chatglm.cn/blog",
"An open bilingual dialogue language model by Tsinghua University",
)
register_model_info(
["tenyxchat-7b-v1"],
"TenyxChat-7B",
"https://huggingface.co/tenyx/TenyxChat-7B-v1",
"An open model DPO trained on top of OpenChat-3.5 using Tenyx fine-tuning",
)
register_model_info(
["zephyr-7b-beta", "zephyr-7b-alpha"],
"Zephyr",
"https://huggingface.co/HuggingFaceH4/zephyr-7b-alpha",
"A chatbot fine-tuned from Mistral by Hugging Face",
)
register_model_info(
["notus-7b-v1"],
"Notus",
"https://huggingface.co/argilla/notus-7b-v1",
"A chatbot fine-tuned from Zephyr SFT by Argilla",
)
register_model_info(
["catppt"],
"CatPPT",
"https://huggingface.co/rishiraj/CatPPT",
"A chatbot fine-tuned from a SLERP merged model by Rishiraj Acharya",
)
register_model_info(
["TinyLlama"],
"TinyLlama",
"https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0",
"The TinyLlama project is an open endeavor to pretrain a 1.1B Llama model on 3 trillion tokens.",
)
register_model_info(
["wizardlm-70b", "wizardlm-30b", "wizardlm-13b"],
"WizardLM",
"https://github.com/nlpxucan/WizardLM",
"An instruction-following LLM using evol-instruct by Microsoft",
)
register_model_info(
["wizardcoder-15b-v1.0"],
"WizardLM",
"https://github.com/nlpxucan/WizardLM/tree/main/WizardCoder",
"Empowering Code Large Language Models with Evol-Instruct",
)
register_model_info(
["mpt-7b-chat", "mpt-30b-chat"],
"MPT-Chat",
"https://www.mosaicml.com/blog/mpt-30b",
"A chatbot fine-tuned from MPT by MosaicML",
)
register_model_info(
["guanaco-33b", "guanaco-65b"],
"Guanaco",
"https://github.com/artidoro/qlora",
"A model fine-tuned with QLoRA by UW",
)
register_model_info(
["gpt4all-13b-snoozy"],
"GPT4All-Snoozy",
"https://github.com/nomic-ai/gpt4all",
"A finetuned LLaMA model on assistant style data by Nomic AI",
)
register_model_info(
["koala-13b"],
"Koala",
"https://bair.berkeley.edu/blog/2023/04/03/koala",
"A dialogue model for academic research by BAIR",
)
register_model_info(
["RWKV-4-Raven-14B"],
"RWKV-4-Raven",
"https://huggingface.co/BlinkDL/rwkv-4-raven",
"An RNN with transformer-level LLM performance",
)
register_model_info(
["alpaca-13b"],
"Alpaca",
"https://crfm.stanford.edu/2023/03/13/alpaca.html",
"A model fine-tuned from LLaMA on instruction-following demonstrations by Stanford",
)
register_model_info(
["oasst-pythia-12b"],
"OpenAssistant (oasst)",
"https://open-assistant.io",
"An Open Assistant for everyone by LAION",
)
register_model_info(
["oasst-sft-7-llama-30b"],
"OpenAssistant (oasst)",
"https://open-assistant.io",
"An Open Assistant for everyone by LAION",
)
register_model_info(
["palm-2"],
"PaLM 2 Chat",
"https://cloud.google.com/vertex-ai/docs/release-notes#May_10_2023",
"PaLM 2 for Chat (chat-bison@001) by Google",
)
register_model_info(
["llama-7b", "llama-13b"],
"LLaMA",
"https://arxiv.org/abs/2302.13971",
"Open and efficient foundation language models by Meta",
)
register_model_info(
["open-llama-7b-v2-open-instruct", "open-llama-7b-open-instruct"],
"Open LLaMa (Open Instruct)",
"https://medium.com/vmware-data-ml-blog/starter-llm-for-the-enterprise-instruction-tuning-openllama-7b-d05fc3bbaccc",
"Open LLaMa fine-tuned on instruction-following data by VMware",
)
register_model_info(
["dolly-v2-12b"],
"Dolly",
"https://www.databricks.com/blog/2023/04/12/dolly-first-open-commercially-viable-instruction-tuned-llm",
"An instruction-tuned open large language model by Databricks",
)
register_model_info(
["stablelm-tuned-alpha-7b"],
"StableLM",
"https://github.com/stability-AI/stableLM",
"Stability AI language models",
)
register_model_info(
["codet5p-6b"],
"CodeT5p-6b",
"https://huggingface.co/Salesforce/codet5p-6b",
"Code completion model released by Salesforce",
)
register_model_info(
["fastchat-t5-3b", "fastchat-t5-3b-v1.0"],
"FastChat-T5",
"https://huggingface.co/lmsys/fastchat-t5-3b-v1.0",
"A chat assistant fine-tuned from FLAN-T5 by LMSYS",
)
register_model_info(
["phoenix-inst-chat-7b"],
"Phoenix-7B",
"https://huggingface.co/FreedomIntelligence/phoenix-inst-chat-7b",
"A multilingual chat assistant fine-tuned from Bloomz to democratize ChatGPT across languages by CUHK(SZ)",
)
register_model_info(
["realm-7b-v1"],
"ReaLM",
"https://github.com/FreedomIntelligence/ReaLM",
"A chatbot fine-tuned from LLaMA2 with data generated via iterative calls to UserGPT and ChatGPT by CUHK(SZ) and SRIBD.",
)
register_model_info(
["billa-7b-sft"],
"BiLLa-7B-SFT",
"https://huggingface.co/Neutralzz/BiLLa-7B-SFT",
"An instruction-tuned bilingual LLaMA with enhanced reasoning ability by an independent researcher",
)
register_model_info(
["h2ogpt-gm-oasst1-en-2048-open-llama-7b-preview-300bt-v2"],
"h2oGPT-GM-7b",
"https://huggingface.co/h2oai/h2ogpt-gm-oasst1-en-2048-open-llama-7b-preview-300bt-v2",
"An instruction-tuned OpenLLaMA with enhanced conversational ability by H2O.ai",
)
register_model_info(
["baize-v2-7b", "baize-v2-13b"],
"Baize v2",
"https://github.com/project-baize/baize-chatbot#v2",
"A chatbot fine-tuned from LLaMA with ChatGPT self-chat data and Self-Disillation with Feedback (SDF) by UCSD and SYSU.",
)
register_model_info(
[
"airoboros-l2-7b-2.1",
"airoboros-l2-13b-2.1",
"airoboros-c34b-2.1",
"airoboros-l2-70b-2.1",
],
"airoboros",
"https://huggingface.co/jondurbin/airoboros-l2-70b-2.1",
"An instruction-tuned LlaMa model tuned with 100% synthetic instruction-response pairs from GPT4",
)
register_model_info(
[
"spicyboros-7b-2.2",
"spicyboros-13b-2.2",
"spicyboros-70b-2.2",
],
"spicyboros",
"https://huggingface.co/jondurbin/spicyboros-70b-2.2",
"De-aligned versions of the airoboros models",
)
register_model_info(
["Robin-7b-v2", "Robin-13b-v2", "Robin-33b-v2"],
"Robin-v2",
"https://huggingface.co/OptimalScale/robin-7b-v2-delta",
"A chatbot fine-tuned from LLaMA-7b, achieving competitive performance on chitchat, commonsense reasoning and instruction-following tasks, by OptimalScale, HKUST.",
)
register_model_info(
["manticore-13b-chat"],
"Manticore 13B Chat",
"https://huggingface.co/openaccess-ai-collective/manticore-13b-chat-pyg",
"A chatbot fine-tuned from LlaMa across several CoT and chat datasets.",
)
register_model_info(
["redpajama-incite-7b-chat"],
"RedPajama-INCITE-7B-Chat",
"https://huggingface.co/togethercomputer/RedPajama-INCITE-7B-Chat",
"A chatbot fine-tuned from RedPajama-INCITE-7B-Base by Together",
)
register_model_info(
[
"falcon-7b",
"falcon-7b-instruct",
"falcon-40b",
"falcon-40b-instruct",
"falcon-180b",
"falcon-180b-chat",
],
"Falcon",
"https://huggingface.co/tiiuae/falcon-180B",
"TII's flagship series of large language models",
)
register_model_info(
["tigerbot-7b-sft"],
"Tigerbot",
"https://huggingface.co/TigerResearch/tigerbot-7b-sft",
"A large-scale language model (LLM) with multiple languages and tasks.",
)
register_model_info(
["internlm-chat-7b", "internlm-chat-7b-8k", "internlm2_5-20b-chat"],
"InternLM",
"https://huggingface.co/internlm/internlm-chat-7b",
"A multi-language large-scale language model (LLM), developed by SHLAB.",
)
register_model_info(
["internvl2-26b", "internvl2-4b"],
"InternVL 2",
"https://internvl.github.io/blog/2024-07-02-InternVL-2.0/",
"Multimodal Model developed by OpenGVLab",
)
register_model_info(
["Qwen-7B-Chat"],
"Qwen",
"https://huggingface.co/Qwen/Qwen-7B-Chat",
"A multi-language large-scale language model (LLM), developed by Damo Academy.",
)
register_model_info(
["smaug-2-72b"],
"Smaug-2-72B",
"https://huggingface.co/abacusai/Smaug-2-72B",
"An open model trained by Abacus.AI.",
)
register_model_info(
["Llama2-Chinese-13b-Chat", "LLama2-Chinese-13B"],
"Llama2-Chinese",
"https://huggingface.co/FlagAlpha/Llama2-Chinese-13b-Chat",
"A multi-language large-scale language model (LLM), developed by FlagAlpha.",
)
register_model_info(
["Meta-Llama-3-8B-Instruct", "Meta-Llama-3-70B-Instruct"],
"llama-3",
"https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct",
"Meta developed and released the Meta Llama 3 family of large language models (LLMs), a collection of pretrained and instruction tuned generative text models in 8 and 70B sizes.",
)
register_model_info(
["Chinese-Alpaca-2-7B", "Chinese-Alpaca-2-13B"],
"Chinese-Alpaca",
"https://huggingface.co/hfl/chinese-alpaca-2-13b",
"New extended Chinese vocabulary beyond Llama-2, open-sourcing the Chinese LLaMA-2 and Alpaca-2 LLMs.",
)
register_model_info(
["Vigogne-2-7B-Instruct", "Vigogne-2-13B-Instruct"],
"Vigogne-Instruct",
"https://huggingface.co/bofenghuang/vigogne-2-7b-instruct",
"A French large language model (LLM) optimized for instruction-following, developed by Bofeng Huang",
)
register_model_info(
["Vigogne-2-7B-Chat", "Vigogne-2-13B-Chat"],
"Vigogne-Chat",
"https://huggingface.co/bofenghuang/vigogne-2-7b-chat",
"A French large language model (LLM) optimized for instruction-following and multi-turn dialogues, developed by Bofeng Huang",
)
register_model_info(
["stable-vicuna-13B-HF"],
"stable-vicuna",
"https://huggingface.co/TheBloke/stable-vicuna-13B-HF",
"A Vicuna model fine-tuned using RLHF via PPO on various conversational and instructional datasets.",
)
register_model_info(
["deluxe-chat-v1", "deluxe-chat-v1.1", "deluxe-chat-v1.2", "deluxe-chat-v1.3"],
"DeluxeChat",
"",
"Deluxe Chat",
)
register_model_info(
[
"Xwin-LM-7B-V0.1",
"Xwin-LM-13B-V0.1",
"Xwin-LM-70B-V0.1",
"Xwin-LM-7B-V0.2",
"Xwin-LM-13B-V0.2",
],
"Xwin-LM",
"https://github.com/Xwin-LM/Xwin-LM",
"Chat models developed by Xwin-LM team",
)
register_model_info(
["lemur-70b-chat"],
"Lemur-Chat",
"https://huggingface.co/OpenLemur/lemur-70b-chat-v1",
"An openly accessible language model optimized for both natural language and coding capabilities ",
)
register_model_info(
["Mistral-7B-OpenOrca"],
"Open-Orca",
"https://huggingface.co/Open-Orca/Mistral-7B-OpenOrca",
"A fine-tune of [Mistral 7B](https://huggingface.co/mistralai/Mistral-7B-v0.1) using [OpenOrca dataset](https://huggingface.co/datasets/Open-Orca/OpenOrca)",
)
register_model_info(
["dolphin-2.2.1-mistral-7b"],
"dolphin-mistral",
"https://huggingface.co/ehartford/dolphin-2.2.1-mistral-7b",
"An uncensored fine-tuned Mistral 7B",
)
register_model_info(
[
"AquilaChat-7B",
"AquilaChat2-7B",
"AquilaChat2-34B",
],
"Aquila-Chat",
"https://huggingface.co/BAAI/AquilaChat2-34B",
"Chat models developed by BAAI team",
)
register_model_info(
["xDAN-L1-Chat-RL-v1"],
"xDAN-L1-Chat",
"https://huggingface.co/xDAN-AI/xDAN-L1-Chat-RL-v1",
"A large language chat model created by xDAN-AI.",
)
register_model_info(
["MetaMath-70B-V1.0", "MetaMath-7B-V1.0"],
"MetaMath",
"https://huggingface.co/meta-math",
"A finetune of Llama2 on [MetaMathQA](https://huggingface.co/datasets/meta-math/MetaMathQA) that specializes in mathematical reasoning.",
)
register_model_info(
["Yuan2-2B-hf", "Yuan2-51B-hf", "Yuan2-102B-hf"],
"IEIYuan",
"https://huggingface.co/IEITYuan",
"A Basemodel developed by IEI.",
)
register_model_info(
[
"llava-v1.6-34b",
"llava-v1.6-vicuna-13b",
"llava-v1.6-vicuna-7b",
"llava-v1.6-mistral-7b",
"llava-v1.5-13b",
"llava-v1.5-7b",
],
"LLaVA",
"https://github.com/haotian-liu/LLaVA",
"an open large language and vision assistant",
)
register_model_info(
[
"cogvlm2-llama3-chat-19b",
],
"CogVLM2",
"https://huggingface.co/THUDM/cogvlm2-llama3-chat-19B",
"Open VLM by Tsinghua/Zhipu AI",
)
register_model_info(
["gemma-7b-it", "gemma-2b-it"],
"Gemma",
"https://blog.google/technology/developers/gemma-open-models/",
"Gemma by Google",
)
register_model_info(
[
"cllm/consistency-llm-7b-codesearchnet",
"cllm/consistency-llm-7b-gsm8k",
"cllm/consistency-llm-7b-sharegpt48k",
"cllm/consistency-llm-7b-spider",
],
"consistency-llm",
"https://huggingface.co/cllm",