Views
No views yet
[!NOTE] Note: "-Paddle" models use PaddlePaddle weights, while "-PT" models use Transformer-style PyTorch weights.
| Key | Value |
|---|---|
| Modality | Text |
| Training Stage | Posttraining |
| Params | 0.36B |
| Layers | 18 |
| Heads(Q/KV) | 16 / 2 |
| Context Length | 131072 |
1# Download Model
2huggingface-cli download baidu/ERNIE-4.5-0.3B-Paddle --local-dir baidu/ERNIE-4.5-0.3B-Paddle
3# SFT
4erniekit train examples/configs/ERNIE-4.5-0.3B/sft/run_sft_8k.yaml
5# DPO
6erniekit train examples/configs/ERNIE-4.5-0.3B/dpo/run_dpo_8k.yaml1python -m fastdeploy.entrypoints.openai.api_server \
2 --model baidu/ERNIE-4.5-0.3B-Paddle \
3 --port 8180 \
4 --metrics-port 8181 \
5 --engine-worker-queue-port 8182 \
6 --max-model-len 32768 \
7 --max-num-seqs 321@misc{ernie2025technicalreport,
2 title={ERNIE 4.5 Technical Report},
3 author={Baidu ERNIE Team},
4 year={2025},
5 eprint={},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={}
9}