Update README.md
Browse files
README.md
CHANGED
@@ -1,8 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
# Apollo Model
|
3 |
|
4 |
This is an experimental hybrid reasoning model built on Qwen2.5-32B-Instruct
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
### Merge Method
|
7 |
|
8 |
This model was merged using the [Model Stock](https://arxiv.org/abs/2403.19522) merge method using [Qwen/Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct) as a base.
|
@@ -49,5 +62,4 @@ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_
|
|
49 |
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
50 |
print(response)
|
51 |
|
52 |
-
'''
|
53 |
-
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
base_model:
|
6 |
+
- Qwen/Qwen2.5-32B-Instruct
|
7 |
+
---
|
8 |
|
9 |
# Apollo Model
|
10 |
|
11 |
This is an experimental hybrid reasoning model built on Qwen2.5-32B-Instruct
|
12 |
|
13 |
+
# GGUF
|
14 |
+
|
15 |
+
mradermacher/Apollo-v3-32B-GGUF
|
16 |
+
|
17 |
+
thanks mradermacher for this gguf
|
18 |
+
|
19 |
### Merge Method
|
20 |
|
21 |
This model was merged using the [Model Stock](https://arxiv.org/abs/2403.19522) merge method using [Qwen/Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct) as a base.
|
|
|
62 |
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
63 |
print(response)
|
64 |
|
65 |
+
'''
|
|