File size: 2,982 Bytes
793b4d1
1535c91
 
 
0f35956
 
 
 
793b4d1
0f35956
 
1535c91
 
 
 
0f35956
1535c91
793b4d1
1535c91
793b4d1
1535c91
 
 
 
793b4d1
1535c91
 
 
 
 
 
 
 
 
 
 
 
 
793b4d1
d728971
793b4d1
d728971
 
2275163
d728971
 
 
 
 
 
 
 
793b4d1
1535c91
793b4d1
1535c91
 
793b4d1
1535c91
 
5536d19
 
1535c91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: mit
language:
- en
base_model:
- 01-ai/Yi-1.5-9B-Chat
- Qwen/Qwen2-7B-Instruct
library_name: transformers
tags:
- mergekit
- merge
- conversational
- chicka
- chinese
- china
---
# ChinaLM by Chickaboo AI

Welcome to ChinaLM, a Chinese LLM merge made Chickaboo AI. ChinaLM is designed to deliver a high-quality conversational experience in Chinese.

## Table of Contents
- **Model Details**
- **Benchmarks**
- **Usage**

## Model Details
ChinaLM is a merge of the [Qwen2-7B-Instruct](https://huggingface.co/Qwen/Qwen2-7B-Instruct) model and [Yi-1.5-9B-Chat](https://huggingface.co/01-ai/Yi-1.5-9B-Chat) made with Mergekit using this config file:
``` json
slices:
  - sources:
    - model: 01-ai/Yi-1.5-9B-Chat
      layer_range: [0, 20]
  - sources:
    - model: Qwen/Qwen2-7B-Instruct
      layer_range: [0, 20]
merge_method: passthrough
dtype: bfloat16
```

## Open Chinese LLM Leaderboard

Coming soon

| **Benchmark**    | **ChinaLM-9B**  | **ChinaLM-13B (Unrealesed)** | **Mistral-7B-Instruct-v0.2** | **Meta-Llama-3-8B** | **Yi-1.5-9B-Chat** | **Qwen2-7B-Instruct** |
|------------------|-----------------|------------------|------------------------------|---------------------|------------|--------------|
| **Average**      | **--**          | --            | --                        | --                | --     | --         |
| **ARC**          | **--**          | --           | --                     | --               | --     | --         |
| **Hellaswag**    | **--**          | --            | --                        | --                | --      | --        |
| **MMLU**         | **--**          | --            | --                      | --          | --      | --        |
| **TruthfulQA**   | **--**          | --            | --                         | --               | --      | --         |
| **Winogrande**   | **--**          | --            |--                         | --               | --      | --      |
| **GSM8K**        | **--**          | --            | --                         | --                | --      | --         |

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

device = "cuda" # the device to load the model onto

model = AutoModelForCausalLM.from_pretrained("Chickaboo/ChinaLM-9B")
tokenizer = AutoTokenizer.from_pretrained("Chickaboo/ChinaLM-9B")

messages = [
    {"role": "user", "content": "What is your favourite condiment?"},
    {"role": "assistant", "content": "Well, I'm quite partial to a good squeeze of fresh lemon juice. It adds just the right amount of zesty flavour to whatever I'm cooking up in the kitchen!"},
    {"role": "user", "content": "Do you have mayonnaise recipes?"}
]

encodeds = tokenizer.apply_chat_template(messages, return_tensors="pt")

model_inputs = encodeds.to(device)
model.to(device)

generated_ids = model.generate(model_inputs, max_new_tokens=1000, do_sample=True)
decoded = tokenizer.batch_decode(generated_ids)
print(decoded[0])