Haimaker.ai Logo

ERNIE 4.5 300B A47B Paddle

baidu/ernie-4.5-300b-a47b
Chatapache-2.0
Baidu|Released Jun 2025 · Updated Sep 2025

ERNIE 4.5 300B A47B Paddle (baidu/ernie-4.5-300b-a47b) is a ernie4_5_moe 300.5B-parameter model from Baidu with a 131,072-token context window and 12,000 max output tokens, priced at $0.28/1M input and $1.10/1M output tokens. Available via the haimaker.ai OpenAI-compatible API.

Parameters
300.5B
Context Window
131K
tokens
Max Output
12K
tokens
Input Price
$0.28
/1M tokens
Output Price
$1.10
/1M tokens

Overview

Ernie 4.5 300B A47b is a chat model by Baidu. It has 300.5B parameters. It supports a 131K token context window.

Model Card

ERNIE-4.5-300B-A47B

NOTE: Note: "-Paddle" models use PaddlePaddle weights, while "-PT" models use Transformer-style PyTorch weights.

ERNIE 4.5 Highlights

The advanced capabilities of the ERNIE 4.5 models, particularly the MoE-based A47B and A3B series, are underpinned by several key technical innovations:

  • Multimodal Heterogeneous MoE Pre-Training: Our models are jointly trained on both textual and visual modalities to better capture the nuances of multimodal information and improve performance on tasks involving text understanding and generation, image understanding, and cross-modal reasoning. To achieve this without one modality hindering the learning of another, we designed a heterogeneous MoE structure, incorporated modality-isolated routing, and employed router orthogonal loss and multimodal token-balanced loss. These architectural choices ensure that both modalities are effectively represented, allowing for mutual reinforcement during training.
  • Scaling-Efficient Infrastructure: We propose a novel heterogeneous hybrid parallelism and hierarchical load balancing strategy for efficient training of ERNIE 4.5 models. By using intra-node expert parallelism, memory-efficient pipeline scheduling, FP8 mixed-precision training and finegrained recomputation methods, we achieve remarkable pre-training throughput. For inference, we propose multi-expert parallel collaboration method and convolutional code quantization algorithm to achieve 4-bit/2-bit lossless quantization. Furthermore, we introduce PD disaggregation with dynamic role switching for effective resource utilization to enhance inference performance for ERNIE 4.5 MoE models. Built on PaddlePaddle, ERNIE 4.5 delivers high-performance inference across a wide range of hardware platforms.
  • Modality-Specific Post-Training: To meet the diverse requirements of real-world applications, we fine-tuned variants of the pre-trained model for specific modalities. Our LLMs are optimized for general-purpose language understanding and generation. The VLMs focuses on visuallanguage understanding and supports both thinking and non-thinking modes. Each model employed a combination of Supervised Fine-tuning (SFT), Direct Preference Optimization (DPO) or a modified reinforcement learning method named Unified Preference Optimization (UPO) for post-training.
  • Model Overview

    ERNIE-4.5-300B-A47B is a text MoE Post-trained model, with 300B total parameters and 47B activated parameters for each token. The following are the model configuration details:

    |Key|Value|
    |-|-|
    |Modality|Text|
    |Training Stage|Pretraining|
    |Params(Total / Activated)|300B / 47B|
    |Layers|54|
    |Heads(Q/KV)|64 / 8|
    |Text Experts(Total / Activated)|64 / 8|
    |Vision Experts(Total / Activated)|64 / 8|
    |Context Length|131072|

    Quickstart

    Model Finetuning with ERNIEKit

    ERNIEKit is a training toolkit based on PaddlePaddle, specifically designed for the ERNIE series of open-source large models. It provides comprehensive support for scenarios such as instruction fine-tuning (SFT, LoRA) and alignment training (DPO), ensuring optimal performance.

    Usage Examples:

    # Download model
    huggingface-cli download baidu/ERNIE-4.5-300B-A47B-Paddle --local-dir baidu/ERNIE-4.5-300B-A47B-Paddle
    

    SFT

    erniekit train examples/configs/ERNIE-4.5-300B-A47B/sft/run_sft_wint8mix_lora_8k.yaml

    DPO

    erniekit train examples/configs/ERNIE-4.5-300B-A47B/dpo/run_dpo_wint8mix_lora_8k.yaml

    For more detailed examples, including SFT with LoRA, multi-GPU configurations, and advanced scripts, please refer to the examples folder within the ERNIEKit repository.

    Using FastDeploy

    Service deployment can be quickly completed using FastDeploy in the following command. For more detailed usage instructions, please refer to the FastDeploy Repository.

    Note: To deploy on a configuration with 4 GPUs each having at least 80G of memory, specify ``--quantization wint4`. If you specify `--quantization wint8`, then resources for 8 GPUs are required.
    python -m fastdeploy.entrypoints.openai.api_server \
           --model baidu/ERNIE-4.5-300B-A47B-Paddle \
           --port 8180 \
           --metrics-port 8181 \
           --quantization wint4 \
           --tensor-parallel-size 8 \
           --engine-worker-queue-port 8182 \
           --max-model-len 32768 \
           --max-num-seqs 32

    To deploy the sparse attention version to speed up long context using FastDeploy, you can run the following command.
    For more details about sparse attention, please refer to the PLAS Attention.

    export FD_ATTENTION_BACKEND="PLAS_ATTN"
    

    python -m fastdeploy.entrypoints.openai.api_server \
    --model baidu/ERNIE-4.5-300B-A47B-Paddle \
    --port 8180 \
    --metrics-port 8181 \
    --quantization wint4 \
    --tensor-parallel-size 4 \
    --engine-worker-queue-port 8182 \
    --max-model-len 131072 \
    --max-num-seqs 32 \
    --max-num-batched-tokens 8192 \
    --enable-chunked-prefill \
    --plas-attention-config '{"plas_encoder_top_k_left": 50, "plas_encoder_top_k_right": 60,"plas_decoder_top_k_left": 100, "plas_decoder_top_k_right": 120}'

    To deploy the W4A8C8 quantized version using FastDeploy, you can run the following command.

    python -m fastdeploy.entrypoints.openai.api_server \
           --model baidu/ERNIE-4.5-300B-A47B-W4A8C8-TP4-Paddle \
           --port 8180 \
           --metrics-port 8181 \
           --engine-worker-queue-port 8182 \
           --tensor-parallel-size 4 \
           --max-model-len 32768 \
           --max-num-seqs 32

    To deploy the WINT2 quantized version using FastDeploy on a single 141G GPU, you can run the following command.

    python -m fastdeploy.entrypoints.openai.api_server \
           --model "baidu/ERNIE-4.5-300B-A47B-2Bits-Paddle" \
           --port 8180 \
           --metrics-port 8181 \
           --engine-worker-queue-port 8182 \
           --tensor-parallel-size 1 \
           --max-model-len  32768 \
           --max-num-seqs 128

    The following contains a code snippet illustrating how to use ERNIE-4.5-300B-A47B-FP8 generate content based on given inputs.

    from fastdeploy import LLM, SamplingParams
    

    prompts = [
    "Hello, my name is",
    ]

    sampling_params = SamplingParams(temperature=0.8, top_p=0.95, max_tokens=128)

    model = "baidu/ERNIE-4.5-300B-A47B-FP8-Paddle"
    llm = LLM(model=model, tensor_parallel_size=8, max_model_len=8192, num_gpu_blocks_override=1024, engine_worker_queue_port=9981)

    outputs = llm.generate(prompts, sampling_params)

    for output in outputs:
    prompt = output.prompt
    generated_text = output.outputs.text
    print("generated_text", generated_text)

    Best Practices

    Sampling Parameters

    To achieve optimal performance, we suggest using Temperature=0.8, TopP=0.8`.

    Prompts for Web Search

    For Web Search, {references}, {date}, and {question} are arguments.

    For Chinese question, we use the prompt:

    ernie_search_zh_prompt = \
    '''下面你会收到当前时间、多个不同来源的参考文章和一段对话。你的任务是阅读多个参考文章,并根据参考文章中的信息回答对话中的问题。
    以下是当前时间和参考文章:
    
    #当前时间 {date}

    #参考文章
    {references}


    请注意:
  • 回答必须结合问题需求和当前时间,对参考文章的可用性进行判断,避免在回答中使用错误或过时的信息。
  • 当参考文章中的信息无法准确地回答问题时,你需要在回答中提供获取相应信息的建议,或承认无法提供相应信息。
  • 你需要优先根据百科、官网、权威机构、专业网站等高权威性来源的信息来回答问题。
  • 回复需要综合参考文章中的相关数字、案例、法律条文、公式等信息,使你的答案更专业。
  • 当问题属于创作类任务时,需注意以下维度:
    • 态度鲜明:观点、立场清晰明确,避免模棱两可,语言果断直接
    • 文采飞扬:用词精准生动,善用修辞手法,增强感染力
    • 有理有据:逻辑严密递进,结合权威数据/事实支撑论点

    下面请结合以上信息,回答问题,补全对话 {question}'''

    For English question, we use the prompt:

    ernie_search_en_prompt = \
    '''
    Below you will be given the current time, multiple references from different sources, and a conversation. Your task is to read the references and use the information in them to answer the question in the conversation.
    Here are the current time and the references:
    
    #Current Time {date}

    #References
    {references}


    Please note:
  • Based on the question’s requirements and the current time, assess the usefulness of the references to avoid using inaccurate or outdated information in the answer.
  • If the references do not provide enough information to accurately answer the question, you should suggest how to obtain the relevant information or acknowledge that you are unable to provide it.
  • Prioritize using information from highly authoritative sources such as encyclopedias, official websites, authoritative institutions, and professional websites when answering questions.
  • Incorporate relevant numbers, cases, legal provisions, formulas, and other details from the references to make your answer more professional.
  • For creative tasks, keep these dimensions in mind:
    • Clear attitude: Clear views and positions, avoid ambiguity, and use decisive and direct language
    • Brilliant writing: Precise and vivid words, good use of rhetoric, and enhance the appeal
    • Well-reasoned: Rigorous logic and progressive, combined with authoritative data/facts to support the argument

    Now, using the information above, answer the question and complete the conversation: {question}'''

    Parameter notes:

    • {question} is the user’s question
    • {date} is the current time, and the recommended format is “YYYY-MM-DD HH:MM:SS, Day of the Week, Beijing/China.”
    • {references} is the references, and the recommended format is:
    ##参考文章1
    标题:周杰伦
    文章发布时间:2025-04-20
    内容:周杰伦(Jay Chou),1979年1月18日出生于台湾省新北市,祖籍福建省永春县,华语流行乐男歌手、音乐人、演员、导演、编剧,毕业于淡江中学。2000年,发行个人首张音乐专辑《Jay》。...
    来源网站网址:baike.baidu.com
    来源网站的网站名:百度百科
    

    ##参考文章2
    ...

    License

    The ERNIE 4.5 models are provided under the Apache License 2.0. This license permits commercial use, subject to its terms and conditions. Copyright (c) 2025 Baidu, Inc. All Rights Reserved.

    Citation

    If you find ERNIE 4.5 useful or wish to use it in your projects, please kindly cite our technical report:

    @misc{ernie2025technicalreport,
          title={ERNIE 4.5 Technical Report},
          author={Baidu ERNIE Team},
          year={2025},
          eprint={},
          archivePrefix={arXiv},
          primaryClass={cs.CL},
          url={}
    }

    Features & Capabilities

    Modechat
    Context Window131,072 tokens
    Max Output12,000 tokens
    Function Calling-
    Vision-
    Reasoning-
    Web Search-
    Url Context-

    Technical Details

    ArchitectureErnie4_5_MoeForCausalLM
    Model Typeernie4_5_moe
    Languagesen, zh
    LibraryPaddlePaddle

    API Usage

    from openai import OpenAI
    
    client = OpenAI(
        base_url="https://api.haimaker.ai/v1",
        api_key="YOUR_API_KEY",
    )
    
    response = client.chat.completions.create(
        model="baidu/ernie-4.5-300b-a47b",
        messages=[
            {"role": "user", "content": "Hello, how are you?"}
        ],
    )
    
    print(response.choices[0].message.content)

    Frequently Asked Questions

    What is the context window of ERNIE 4.5 300B A47B Paddle?

    ERNIE 4.5 300B A47B Paddle (baidu/ernie-4.5-300b-a47b) has a 131,072-token context window and supports up to 12,000 output tokens per request.

    How much does ERNIE 4.5 300B A47B Paddle cost?

    ERNIE 4.5 300B A47B Paddle is priced at $0.28 per 1M input tokens and $1.10 per 1M output tokens when accessed via the haimaker.ai OpenAI-compatible API.

    How do I use ERNIE 4.5 300B A47B Paddle via API?

    Send requests to https://api.haimaker.ai/v1/chat/completions with model "baidu/ernie-4.5-300b-a47b" using any OpenAI-compatible SDK. Authentication uses a Bearer API key from https://app.haimaker.ai.

    Use ERNIE 4.5 300B A47B Paddle with the haimaker API

    OpenAI-compatible endpoint. Start building in minutes.

    Get API Access

    More from Baidu