openPangu-Embedded-1B
is a high-efficiency language model trained from scratch on Ascend NPU. It has
1B parameters
(excluding vocabulary embeddings), with a
26-layer Dense architecture
, trained on approximately
10T tokens
.
Through model architecture design, data optimization, and training strategies optimized for Ascend Atlas 200I A2, openPangu-Embedded-1B achieves high accuracy while maintaining requirements for edge-side deployment.
2. Model Architecture
openPangu-Embedded-1B is an efficient, fast-thinking language model designed for deployment on edge devices.
openPangu-Embedded-1B
Architecture
Dense
Parameters (Non-Embedding)
1B
Number of Layers
26
Hidden Dimension
1536
Attention Mechanism
GQA
Number of Attention Heads
12 for Q, 6 for KV
Vocabulary Size
153k
Context Length (Natively)
32k
Training Tokens
10T
3. Benchmark
Benchmark
Metric
Fast Thinking
General Capability
MMLU
Acc
60.72
CMMLU
Acc
51.99
C-Eval
Acc
60.98
IF-Eval
Prompt Strict
56.56
CLUEWSC
Acc
68.55
Math & Reasoning
GSM8K
Acc
66.72
MATH-500
Acc
52.00
DROP
F1
50.31
Code Ability
MBPP
Pass@1
54.09
HumanEval
Pass@1
56.71
Note:
The system prompt was empty during evaluation.
Please refer to the following methods to verify the integrity of the downloaded content. The hash values are stored in the
checklist.chk
file.
#!/usr/bin/env bash
ARCH=$(uname -m)
MODEL_PATH="${TARGET_FOLDER}/${MODEL_FOLDER_PATH}"cd"$MODEL_PATH" || exit 1
if [ "$ARCH" = "arm64" ]; thensha256sum checklist.chk
elsesha256sum -c checklist.chk
fi
4.3 Inference with Transformers
# coding=utf-8# Copyright (c) 2025 Huawei Technologies Co., Ltd. All rights reserved.from transformers import AutoModelForCausalLM, AutoTokenizer
from transformers import GenerationConfig
model_local_path = "FreedomIntelligence/openPangu-Embedded-1B"# load the tokenizer and the model
tokenizer = AutoTokenizer.from_pretrained(
model_local_path,
use_fast=False,
trust_remote_code=True,
local_files_only=True
)
model = AutoModelForCausalLM.from_pretrained(
model_local_path,
trust_remote_code=True,
torch_dtype="auto",
device_map="auto",
local_files_only=True
)
# prepare the model input
sys_prompt = "You must strictly comply with laws, regulations, and social ethics." \
"When generating content, avoid involving violence, pornography, terrorism, racial discrimination, gender discrimination, or other inappropriate content." \
"If such tendencies are detected in the input or output, refuse to answer and issue a warning. For example, if the input contains violent threats or pornographic descriptions," \
"return an error message: 'Your input contains inappropriate content and cannot be processed.'"
prompt = "Give me a short introduction to large language model."
messages = [
{"role": "system", "content": sys_prompt}, # define your system prompt here
{"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
# conduct text completion
outputs = model.generate(**model_inputs, max_new_tokens=32768, eos_token_id=45892, return_dict_in_generate=True)
input_length = model_inputs.input_ids.shape[1]
generated_tokens = outputs.sequences[:, input_length:]
content = tokenizer.decode(generated_tokens[0], skip_special_tokens=True)
print("\ncontent:", content)
curl http://localhost:8818/v1/chat/completions -H "Content-Type: application/json" -d '{ "model": "openPangu-Embedded-1B", "messages": [ {"role": "user", "content": "Give me a short introduction to large language models."} ], "temperature": 0.6, "top_p": 0.95, "top_k": 20, "max_tokens": 8192 }'
5. Model License
Unless otherwise noted, openPangu-Embedded-7B model is licensed under the terms and conditions of
OPENPANGU MODEL LICENSE AGREEMENT VERSION 1.0
, which is intended to be used permissively and enable the further development of artificial intelligence technologies. Please refer to the LICENSE file located in the root directory of the model repository for details.
6. Disclaimer
Due to the technical limitations inherent in the technology on which the openPangu-Embedded-7B (“Model”) relies and the fact that the artificial intelligence generated content is automatically produced by Model, Huawei cannot make any guarantees regarding the following matters:
The output of this Model is automatically generated via AI algorithms, it does not rule out the possibility that some of the information may be flawed, unreasonable, or cause discomfort, and the generated content does not represent Huawei's attitude or standpoint;
There is no guarantee that this Model is 100% accurate, reliable, functional, timely, secure and safety, error-free, uninterrupted, continuously stable, or free of any faults;
The output of this Model does not constitute any advices or decisions for you, and it does not guarantee the authenticity, completeness, accuracy, timeliness, legality, functionality, or practicality of the generated content. The generated content cannot replace professionals in medical, legal, and other fields in answering your questions. The generated content is for your reference only and does not represent any attitude, standpoint, or position of Huawei. You need to make independent judgments based on your actual situation, and Huawei does not assume any responsibilities.
For feedback and suggestions, please submit an issue or contact us (
[email protected]
).
Runs of FreedomIntelligence openPangu-Embedded-1B on huggingface.co
375
Total runs
0
24-hour runs
-40
3-day runs
-207
7-day runs
4
30-day runs
More Information About openPangu-Embedded-1B huggingface.co Model
openPangu-Embedded-1B huggingface.co is an AI model on huggingface.co that provides openPangu-Embedded-1B's model effect (), which can be used instantly with this FreedomIntelligence openPangu-Embedded-1B model. huggingface.co supports a free trial of the openPangu-Embedded-1B model, and also provides paid use of the openPangu-Embedded-1B. Support call openPangu-Embedded-1B model through api, including Node.js, Python, http.
openPangu-Embedded-1B huggingface.co is an online trial and call api platform, which integrates openPangu-Embedded-1B's modeling effects, including api services, and provides a free online trial of openPangu-Embedded-1B, you can try openPangu-Embedded-1B online for free by clicking the link below.
FreedomIntelligence openPangu-Embedded-1B online free url in huggingface.co:
openPangu-Embedded-1B is an open source model from GitHub that offers a free installation service, and any user can find openPangu-Embedded-1B on GitHub to install. At the same time, huggingface.co provides the effect of openPangu-Embedded-1B install, users can directly use openPangu-Embedded-1B installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
openPangu-Embedded-1B install url in huggingface.co: