mrbeliever commited on
Commit
78ccf9c
·
verified ·
1 Parent(s): da4c005

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +37 -37
app.py CHANGED
@@ -31,43 +31,43 @@ model_links ={
31
  }
32
 
33
  #Pull info about the model to display
34
- model_info ={
35
- "Mistral-7B":
36
- {'description':"""The Mistral model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
37
- \nIt was created by the Mistral AI team as has over **7 billion parameters.** \n""",
38
- 'logo':'https://mistral.ai/images/logo_hubc88c4ece131b91c7cb753f40e9e1cc5_2589_256x0_resize_q97_h2_lanczos_3.webp'},
39
- "Gemma-7B":
40
- {'description':"""The Gemma model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
41
- \nIt was created by the Google's AI Team team as has over **7 billion parameters.** \n""",
42
- 'logo':'https://pbs.twimg.com/media/GG3sJg7X0AEaNIq.jpg'},
43
- "Gemma-2B":
44
- {'description':"""The Gemma model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
45
- \nIt was created by the Google's AI Team team as has over **2 billion parameters.** \n""",
46
- 'logo':'https://pbs.twimg.com/media/GG3sJg7X0AEaNIq.jpg'},
47
- "Zephyr-7B":
48
- {'description':"""The Zephyr model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
49
- \nFrom Huggingface: \n\
50
- Zephyr is a series of language models that are trained to act as helpful assistants. \
51
- Zephyr 7B Gemma\
52
- is the third model in the series, and is a fine-tuned version of google/gemma-7b \
53
- that was trained on on a mix of publicly available, synthetic datasets using Direct Preference Optimization (DPO)\n""",
54
- 'logo':'https://huggingface.co/HuggingFaceH4/zephyr-7b-gemma-v0.1/resolve/main/thumbnail.png'},
55
- "Zephyr-7B-β":
56
- {'description':"""The Zephyr model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
57
- \nFrom Huggingface: \n\
58
- Zephyr is a series of language models that are trained to act as helpful assistants. \
59
- Zephyr-7B-β\
60
- is the second model in the series, and is a fine-tuned version of mistralai/Mistral-7B-v0.1 \
61
- that was trained on on a mix of publicly available, synthetic datasets using Direct Preference Optimization (DPO)\n""",
62
- 'logo':'https://huggingface.co/HuggingFaceH4/zephyr-7b-alpha/resolve/main/thumbnail.png'},
63
- "Meta-Llama-3-8B":
64
- {'description':"""The Llama (3) model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
65
- \nIt was created by the Meta's AI team and has over **8 billion parameters.** \n""",
66
- 'logo':'Llama_logo.png'},
67
- "Meta-Llama-3.1-8B":
68
- {'description':"""The Llama (3.1) model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
69
- \nIt was created by the Meta's AI team and has over **8 billion parameters.** \n""",
70
- 'logo':'Llama3_1_logo.png'},
71
  }
72
 
73
 
 
31
  }
32
 
33
  #Pull info about the model to display
34
+ model_info = {
35
+ "Mistral-7B": {
36
+ 'description': """The Mistral model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
37
+ \nIt was created by the Mistral AI team as has over **7 billion parameters.** \n"""
38
+ },
39
+ "Gemma-7B": {
40
+ 'description': """The Gemma model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
41
+ \nIt was created by the Google's AI Team team as has over **7 billion parameters.** \n"""
42
+ },
43
+ "Gemma-2B": {
44
+ 'description': """The Gemma model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
45
+ \nIt was created by the Google's AI Team team as has over **2 billion parameters.** \n"""
46
+ },
47
+ "Zephyr-7B": {
48
+ 'description': """The Zephyr model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
49
+ \nFrom Huggingface: \n\
50
+ Zephyr is a series of language models that are trained to act as helpful assistants. \
51
+ Zephyr 7B Gemma\
52
+ is the third model in the series, and is a fine-tuned version of google/gemma-7b \
53
+ that was trained on on a mix of publicly available, synthetic datasets using Direct Preference Optimization (DPO)\n"""
54
+ },
55
+ "Zephyr-7B-β": {
56
+ 'description': """The Zephyr model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
57
+ \nFrom Huggingface: \n\
58
+ Zephyr is a series of language models that are trained to act as helpful assistants. \
59
+ Zephyr-7B-β\
60
+ is the second model in the series, and is a fine-tuned version of mistralai/Mistral-7B-v0.1 \
61
+ that was trained on on a mix of publicly available, synthetic datasets using Direct Preference Optimization (DPO)\n"""
62
+ },
63
+ "Meta-Llama-3-8B": {
64
+ 'description': """The Llama (3) model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
65
+ \nIt was created by the Meta's AI team and has over **8 billion parameters.** \n"""
66
+ },
67
+ "Meta-Llama-3.1-8B": {
68
+ 'description': """The Llama (3.1) model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
69
+ \nIt was created by the Meta's AI team and has over **8 billion parameters.** \n"""
70
+ },
71
  }
72
 
73