Upload folder using huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- merge
|
| 5 |
+
- mergekit
|
| 6 |
+
- lazymergekit
|
| 7 |
+
- google/gemma-7b
|
| 8 |
+
- EleutherAI/gpt-neo-2.7B
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# gemma_gpt
|
| 12 |
+
|
| 13 |
+
gemma_gpt is a merge of the following models using [mergekit](https://github.com/cg123/mergekit):
|
| 14 |
+
* [google/gemma-7b](https://huggingface.co/google/gemma-7b)
|
| 15 |
+
* [EleutherAI/gpt-neo-2.7B](https://huggingface.co/EleutherAI/gpt-neo-2.7B)
|
| 16 |
+
|
| 17 |
+
## 🧩 Configuration
|
| 18 |
+
|
| 19 |
+
```json{
|
| 20 |
+
"models": [
|
| 21 |
+
{
|
| 22 |
+
"model": "google/gemma-7b",
|
| 23 |
+
"parameters": {
|
| 24 |
+
"param1": "value1",
|
| 25 |
+
"param2": "value2"
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"model": "EleutherAI/gpt-neo-2.7B",
|
| 30 |
+
"parameters": {
|
| 31 |
+
"param1": "value1",
|
| 32 |
+
"param2": "value2"
|
| 33 |
+
}
|
| 34 |
+
}
|
| 35 |
+
]
|
| 36 |
+
}
|