Skip to content

Commit

Permalink
Update Gemma Models (#1158)
Browse files Browse the repository at this point in the history
* Update Gemma Models

Update Gemma 2B & 7B
Add support for Gemma 2B-Instruct
Add support for Gemma 7B-Instruct

* Update Gemma Models

Update Gemma 2B & 7B
Add support for Gemma 2B-Instruct
Add support for Gemma 7B-Instruct
  • Loading branch information
Smartappli committed Feb 25, 2024
1 parent d1ce384 commit 26bf8a3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Instructions for setting up Serge on Kubernetes can be found in the [wiki](https
| **BioMistral | 7B |
| **Code** | 13B, 33B |
| **CodeLLaMA** | 7B, 7B-Instruct, 7B-Python, 13B, 13B-Instruct, 13B-Python, 34B, 34B-Instruct, 34B-Python |
| **Gemma** | 2B, 7B |
| **Gemma** | 2B, 2B-Instruct, 7B, 7B-Instruct |
| **Falcon** | 7B, 7B-Instruct, 40B, 40B-Instruct |
| **LLaMA 2** | 7B, 7B-Chat, 7B-Coder, 13B, 13B-Chat, 70B, 70B-Chat, 70B-OASST |
| **LLaMA Pro** | 8B, 8B-Instruct |
Expand Down
30 changes: 26 additions & 4 deletions api/src/serge/data/models.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,26 +216,48 @@
"models": [
{
"name": "Gemma-2B",
"repo": "MaziyarPanahi/gemma-2b-GGUF",
"repo": "brittlewis12/gemma-2b-GGUF",
"files": [
{
"name": "q4_K_M",
"filename": "gemma-2b.Q4_K_M.gguf",
"disk_space": 1495245728.0
}
]
},
},
{
"name": "Gemma-2B-Instruct",
"repo": "brittlewis12/gemma-2b-it-GGUF",
"files": [
{
"name": "q4_K_M",
"filename": "gemma-2b-it.Q4_K_M.gguf",
"disk_space": 1630263008.0
}
]
},
{
"name": "Gemma-7B",
"repo": "MaziyarPanahi/gemma-7b-GGUF",
"repo": "brittlewis12/gemma-7b-GGUF",
"files": [
{
"name": "q4_K_M",
"filename": "gemma-7b.Q4_K_M.gguf",
"disk_space": 5127231648.0
}
]
}
},
{
"name": "Gemma-7B-Instruct",
"repo": "brittlewis12/gemma-7b-it-GGUF",
"files": [
{
"name": "q4_K_M",
"filename": "gemma-7b-it.Q4_K_M.gguf",
"disk_space": 5329759200.0
}
]
}
]
},
{
Expand Down

0 comments on commit 26bf8a3

Please sign in to comment.