Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: pytorch
|
3 |
+
license: apache-2.0
|
4 |
+
pipeline_tag: text-generation
|
5 |
+
tags:
|
6 |
+
- llm
|
7 |
+
- generative_ai
|
8 |
+
- quantized
|
9 |
+
- android
|
10 |
+
|
11 |
+
---
|
12 |
+
|
13 |
+
![](https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/baichuan2_7b_quantized/web-assets/model_demo.png)
|
14 |
+
|
15 |
+
# Baichuan2-7B: Optimized for Mobile Deployment
|
16 |
+
## State-of-the-art large language model useful on a variety of language understanding and generation tasks
|
17 |
+
|
18 |
+
Baichuan2-7B is a family of LLMs. It achieves the state-of-the-art performance of its size on standard Chinese and English authoritative benchmarks (C-EVAL/MMLU). 4-bit weights and 16-bit activations making it suitable for on-device deployment. For Prompt and output length specified below, the time to first token is Baichuan2-PromptProcessor-Quantized's latency and average time per addition token is Baichuan2-TokenGenerator-Quantized's latency.
|
19 |
+
|
20 |
+
This is based on the implementation of Baichuan2-7B found
|
21 |
+
[here]({source_repo}). More details on model performance
|
22 |
+
accross various devices, can be found [here](https://aihub.qualcomm.com/models/baichuan2_7b_quantized).
|
23 |
+
|
24 |
+
### Model Details
|
25 |
+
|
26 |
+
- **Model Type:** Text generation
|
27 |
+
- **Model Stats:**
|
28 |
+
- Input sequence length for Prompt Processor: 128
|
29 |
+
- Context length: 4096
|
30 |
+
- Number of parameters: 7.07B
|
31 |
+
- Precision: w4a16 + w8a16 (few layers)
|
32 |
+
- Num of key-value heads: 8
|
33 |
+
- Information about the model parts: Prompt Processor and Token Generator are split into 5 parts each. Each corresponding Prompt Processor and Token Generator part share weights.
|
34 |
+
- Prompt processor model size: 5.06 GB
|
35 |
+
- Prompt processor input (part1): 128 tokens
|
36 |
+
- Prompt processor output (part1): Embeddings output
|
37 |
+
- Prompt processor input (other parts): 128 tokens + KVCache initialized with pad token
|
38 |
+
- Prompt processor output (other parts): 128 output tokens + KVCache for token generator
|
39 |
+
- Token generator model size: 5.06 GB
|
40 |
+
- Token generator input (part1): 128 tokens
|
41 |
+
- Token generator output (part1): Embeddings output
|
42 |
+
- Token generator input (other parts): 1 input token + past KVCache
|
43 |
+
- Token generator output (other parts): 1 output token + KVCache for next iteration
|
44 |
+
- Use: Initiate conversation with prompt-processor and then token generator for subsequent iterations.
|
45 |
+
- Supported languages: Chinese and English.
|
46 |
+
- Minimum QNN SDK version required: 2.27.7
|
47 |
+
- TTFT: Time To First Token is the time it takes to generate the first response token. This is expressed as a range because it varies based on the length of the prompt. The lower bound is for a short prompt (up to 128 tokens, i.e., one iteration of the prompt processor) and the upper bound is for a prompt using the full context length (4096 tokens).
|
48 |
+
- Response Rate: Rate of response generation after the first response token.
|
49 |
+
- Tiny MMLU: Tiny MMLU (Massive Multitask Language Understanding) is an English language benchmark designed to measure knowledge acquired during pretraining by evaluating models exclusively in zero-shot and few-shot settings. This makes the benchmark more challenging and more similar to how we evaluate humans.
|
50 |
+
|
51 |
+
| Model | Device | Chipset | Target Runtime | Response Rate (tokens per second) | Time To First Token (range, seconds) | Tiny MMLU |
|
52 |
+
|---|---|---|---|---|---|---|
|
53 |
+
| Baichuan2-7B | Snapdragon 8 Elite QRD | Snapdragon® 8 Elite | QNN | 7.72 | 0.20804799999999998 - 6.6575359999999995 | 49.34% | Use Export Script |
|
54 |
+
|
55 |
+
## Deploying Baichuan2-7B on-device
|
56 |
+
|
57 |
+
Please follow the [LLM on-device deployment](https://github.com/quic/ai-hub-apps/tree/main/tutorials/llm_on_genie) tutorial.
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
## License
|
62 |
+
* The license for the original implementation of Baichuan2-7B can be found [here](https://github.com/baichuan-inc/Baichuan-7B/blob/main/LICENSE).
|
63 |
+
* The license for the compiled assets for on-device deployment can be found [here](https://github.com/baichuan-inc/Baichuan-7B/blob/main/LICENSE)
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
## References
|
68 |
+
* [Baichuan 2: Open Large-scale Language Models](https://arxiv.org/abs/2309.10305)
|
69 |
+
* [Source Model Implementation](https://github.com/baichuan-inc/Baichuan-7B/)
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
## Community
|
74 |
+
* Join [our AI Hub Slack community](https://qualcomm-ai-hub.slack.com/join/shared_invite/zt-2d5zsmas3-Sj0Q9TzslueCjS31eXG2UA#/shared-invite/email) to collaborate, post questions and learn more about on-device AI.
|
75 |
+
* For questions or feedback please [reach out to us](mailto:[email protected]).
|
76 |
+
|
77 |
+
## Usage and Limitations
|
78 |
+
|
79 |
+
Model may not be used for or in connection with any of the following applications:
|
80 |
+
|
81 |
+
- Accessing essential private and public services and benefits;
|
82 |
+
- Administration of justice and democratic processes;
|
83 |
+
- Assessing or recognizing the emotional state of a person;
|
84 |
+
- Biometric and biometrics-based systems, including categorization of persons based on sensitive characteristics;
|
85 |
+
- Education and vocational training;
|
86 |
+
- Employment and workers management;
|
87 |
+
- Exploitation of the vulnerabilities of persons resulting in harmful behavior;
|
88 |
+
- General purpose social scoring;
|
89 |
+
- Law enforcement;
|
90 |
+
- Management and operation of critical infrastructure;
|
91 |
+
- Migration, asylum and border control management;
|
92 |
+
- Predictive policing;
|
93 |
+
- Real-time remote biometric identification in public spaces;
|
94 |
+
- Recommender systems of social media platforms;
|
95 |
+
- Scraping of facial images (from the internet or otherwise); and/or
|
96 |
+
- Subliminal manipulation
|