BAAI / AquilaDense-7B

huggingface.co
Total runs: 135
24-hour runs: 4
7-day runs: 23
30-day runs: -42
Model's Last Updated: July 13 2026
text-generation

Introduction of AquilaDense-7B

Model Details of AquilaDense-7B

AquilaMoE: Efficient Training for MoE Models with Scale-Up and Scale-Out Strategies


Language Foundation Model & Software Team
Beijing Academy of Artificial Intelligence (BAAI)



[Paper(released soon)] [Code] [github]

We present AquilaMoE , a cutting-edge bilingual 8*16B Mixture of Experts (MoE) language model developed using an innovative training methodology called EfficientScale. This approach optimizes performance while minimizing data requirements through a two-stage process. The first stage, termed Scale-Up, initializes the larger model with weights from a pre-trained smaller model, enabling substantial knowledge transfer and continuous pretraining with significantly less data. The second stage, Scale-Out, uses a pre-trained dense model to initialize the MoE experts, further enhancing knowledge transfer and performance. Extensive validation experiments on 1.8B and 7B models compared various initialization schemes, achieving models that maintain and reduce loss during continuous pretraining. Utilizing the optimal scheme, we successfully trained a 16B model and subsequently the 8*16B AquilaMoE model, demonstrating significant improvements in performance and training efficiency.

Training Details
Datasets

We constructed a bilingual pretraining dataset of 4TB tokens in both Chinese and English. This dataset includes webpages, arXiv papers, encyclopedic data, books, codes, and QA pairs. It covers a wide range of high-quality open-source pretraining data such as RedPajama-Data-V2 , falcon-refinedweb , C4 , Pile , WuDaoCorporaText , ChineseWebText , etc. The above open-source data underwent language filtering to retain only Chinese and English texts, heuristic refinement to remove low-quality content, deduplication to maintain uniqueness, domain-specific filtering for relevance, data quality checks, removal of toxic and explicit content, and finally, data mixing in specified proportions.

Model Configurations
Aquila3 7B Aquila3 16B Aquila3 8x16B
Context Length 4096 4096 4096
QKV Bias yes yes yes
Layers 32 40 40
Hidden Dim 4096 5120 5120
Intermediate Dim 14336 20480 20480
KV Group 8 8 8
Trained Tokens 3.6T 1.2T 545B
LR 1.2e-3 4e-4 1.5e-4
Batch Size 12M 12M 24M
Training Procedures

The EfficientScale pipeline efficiently trains a large-scale Mixture of Experts (MoE) model by leveraging knowledge transfer from smaller models. It consists of three key phases: Preparation, Scale-Up, and Scale-Out, each ensuring effective knowledge transfer and continuous learning for an optimized MoE model.

1. Preparation Phase

In the preparation phase, a small dense model is trained, and datasets are prepared for the following stages. This phase ensures the initial model has adequate transferable knowledge and that data is ready for effective training and validation.

  • Model Preparation : Train a small dense model from scratch on a large number of tokens or use a pre-trained small model. This step ensures the model accumulates sufficient transferable knowledge to serve as a strong foundation.
  • Data Preparation : Collect, clean, and preprocess the training and validation datasets. This step ensures the data is suitable for effective training and validation.
  • Validation Setup : Develop training and validation datasets to monitor model performance. Continuous tracking of the model's loss on the validation dataset ensures the initialized models retain transferred knowledge and effectively learn new information.
2. Scale-Up Phase

The Scale-Up phase involves initializing a larger dense model with the weights from a smaller model and performing continuous pretraining to enhance performance.

  • Weight Initialization Strategies : the weights from a small dense model are used to initialize a larger dense model using three strategies:
    • Function Preserving Initialization (FPI) : Expands the model's width while preserving the same output, ensuring knowledge transfer from the smaller model [1].
    • Advanced Knowledge Initialization (AKI) : Addresses symmetry issues in FPI by incorporating weights from both the same and upper layers of the smaller model and uses stacking for depth expansion [2].
    • AKI-Pro : Improves AKI with two refinements:
      1. Interpolation for Depth Growth : Uses interpolation instead of stacking for stable continuous training [3].
      2. GQA Compatibility : Adapts AKI for Group Query Attention models.
  • Continuous Pretraining Process : the scaled-up dense model undergoes continuous pretraining on a large amount of tokens, ensuring effective knowledge transfer and improved performance.
3. Scale-Out Phase

The scale-out phase transforms a large dense model into a Mixture of Experts (MoE) model, including initializing MoE weights and continuous pretraining to enhance performance.

  • MoE Weight Initialization : Aquila-MoE is initialized using Sparse Upcycling [4, 5]. The dense model's MLP layers are replaced with MoE layers, exact replicas of the original, with router parameters initialized normally (mean = 0, variance = 0.02).
  • Continuous Pretraining of MoE : During training and inference, two of eight experts are activated per token, utilizing about 30B parameters. To prevent training collapse, load balancing loss [6] and max z-loss [7, 8] are applied, scaled by 0.001 and 0.01, respectively, ensuring balanced token distribution and stable training.

EfficientScale enables efficient large-scale model training by leveraging pre-trained smaller models, reducing data and computational needs, and ensuring effective knowledge transfer and continuous learning.

References

[1] Chen, T., Goodfellow, I., & Shlens, J. (2016). Net2net: Accelerating learning via knowledge transfer. In Proceedings of ICLR 2016.
[2] Chen, C., Yin, Y., Shang, L., Jiang, X., Qin, Y., Wang, F., Wang, Z., Chen, X., Liu, Z., & Liu, Q. (2022). bert2BERT: Towards reusable pretrained language models. In Proceedings of ACL 2022.
[3] Pan, Y., Yuan, Y., Yin, Y., Shi, J., Xu, Z., Zhang, M., Shang, L., Jiang, X., & Liu, Q. (2024). Preparing lessons for progressive training on language models. arXiv:2401.09192.
[4] Komatsuzaki, A., Puigcerver, J., Lee-Thorp, J., Riquelme Ruiz, C., Mustafa, B., Ainslie, J., Tay, Y., Dehghani, M., & Houlsby, N. (2022). Sparse upcycling: Training mixture-of-experts from dense checkpoints. arXiv:2212.05055.
[5] Hu, S., Tu, Y., Han, X., He, C., Cui, G., Long, X., Zheng, Z., Fang, Y., Huang, Y., Zhao, W., et al. (2024). Minicpm: Unveiling the potential of small language models with scalable training strategies. arXiv:2404.
[6] Fedus, W., Zoph, B., & Shazeer, N. (2022). Switch transformers: Scaling to trillion parameter models with simple and efficient sparsity. JMLR, 23(120), 1–39.
[7] Chowdhery, A., Narang, S., Devlin, J., Bosma, M., Mishra, G., Roberts, A., Barham, P., Chung, H. W., Sutton, C., Gehrmann, S., et al. (2023). Palm: Scaling language modeling with pathways. JMLR, 24(240), 1–113.
[8] Zoph, B., Bello, I., Kumar, S., Du, N., Huang, Y., Dean, J., Shazeer, N., & Fedus, W. (2022). St-moe: Designing stable and transferable sparse expert models. arXiv:2202.08906.

Training Loss

The plot illustrates the training loss versus log FLOPs for the three stages of model training: AquilaDense-7B, AquilaDense-16B, and AquilaMoE.

  1. Each Stage's Decrease : Throughout the training process, we observe a steady decrease in training loss as log FLOPs increase for each stage. The AquilaDense-7B (blue line) stage shows a gradual reduction in loss, followed by the AquilaDense-16B (orange line) stage, which continues the trend.
  2. Quick Recovery at Transition Points : When transitioning from AquilaDense-7B to AquilaDense-16B, and from AquilaDense-16B to AquilaMoE (light blue line), the training loss quickly recovers to the range of the previous stage with minimal additional compute. This indicates that each new stage rapidly achieves the performance level of the preceding stage before further improvements.
  3. Increasing Slope : A notable observation is that the slope of the training loss curve becomes progressively steeper with each stage, indicating an increasingly efficient reduction in training loss. This means that as the model scales and transitions from one stage to the next, the efficiency of training improves, resulting in faster decreases in training loss.

This plot effectively demonstrates the combined benefits of continuous loss reduction, quick recovery at stage transitions, and increasing efficiency in training.

Performance

The performance of the AquilaMoE model series improves significantly across multiple tasks as the parameter size increases. Both scale-up and scale-out strategies are highly effective in enhancing model performance.

Foundation Models
Model AquilaDense-7B AquilaDense-16B AquilaMoE
ARC-c-ppl 37.63 38.31 43.05
ARC-e-ppl 56.08 52.2 65.61
hellaswag-ppl 67.49 71.62 73.94
gsm8k-gen 7.81 28.51 54.51
humaneval-gen 14.02 29.88 15.85
mmlu-ppl 46.47 57.11 61
winograd-ppl 50.53 54.04 55.4
math-gen 1.32 4.24 10.4
mbpp-gen 15.6 36.4 37.2
drop-gen 4.35 33.35 37.62
agieval-gen 14.47 18.57 -
bbh-gen 34.51 41.45 46.04
nq-gen 8.61 9.94 10.78
piqa-ppl 76.71 79.22 80.3

Table: Overall evaluation results of AquilaDense and AquilaMoE (AquilaMoE-8*16B).

Fine-tuned AquilaMoE
Model AquilaMoE-SFT
ARC-c-ppl 49.15
ARC-e-ppl 69.49
hellaswag-ppl 69.77
gsm8k-gen 71.27
humaneval-gen 40.24
mmlu-ppl 59.93
winograd-ppl 57.5
Model GPT 3.5 Turbo (11/06) GPT 3.5 Turbo (03/01) AquilaMoE-SFT
AlpacaEval 2.0 19.3 18.1 21.1

Table: Performance of AquilaMoE-SFT (16*8B) on various benchmarks.

License Agreement

The AquilaMoE project is based on the Apache 2.0 license; The AquilaMoE series models are based on the BAAI Aquila Model License Agreement .

Limitations

The AquilaMoE Instruct model is a quick demonstration that the base model can be easily fine-tuned to achieve compelling performance. It does not have any moderation mechanisms. We're looking forward to engaging with the community on ways to make the model finely respect guardrails, allowing for deployment in environments requiring moderated outputs.

Contact Us

If you are interested, please join our WeChat groups!

Citation

Our paper, detailing the efficient training methods for MoE models using Scale-Up and Scale-Out strategies, will be released soon on arXiv. Stay tuned!

@article{AquilaMoE2024,
  title={AquilaMoE: Efficient Training for MoE Models with Scale-Up and Scale-Out Strategies},
  author={{Language Foundation Model \& Software Team, Beijing Academy of Artificial Intelligence (BAAI)}},
  journal={arXiv preprint arXiv:2406.XXXX},
  year={2024}
}

Runs of BAAI AquilaDense-7B on huggingface.co

135
Total runs
4
24-hour runs
9
3-day runs
23
7-day runs
-42
30-day runs

More Information About AquilaDense-7B huggingface.co Model

More AquilaDense-7B license Visit here:

https://choosealicense.com/licenses/apache-2.0

AquilaDense-7B huggingface.co

AquilaDense-7B huggingface.co is an AI model on huggingface.co that provides AquilaDense-7B's model effect (), which can be used instantly with this BAAI AquilaDense-7B model. huggingface.co supports a free trial of the AquilaDense-7B model, and also provides paid use of the AquilaDense-7B. Support call AquilaDense-7B model through api, including Node.js, Python, http.

AquilaDense-7B huggingface.co Url

https://huggingface.co/BAAI/AquilaDense-7B

BAAI AquilaDense-7B online free

AquilaDense-7B huggingface.co is an online trial and call api platform, which integrates AquilaDense-7B's modeling effects, including api services, and provides a free online trial of AquilaDense-7B, you can try AquilaDense-7B online for free by clicking the link below.

BAAI AquilaDense-7B online free url in huggingface.co:

https://huggingface.co/BAAI/AquilaDense-7B

AquilaDense-7B install

AquilaDense-7B is an open source model from GitHub that offers a free installation service, and any user can find AquilaDense-7B on GitHub to install. At the same time, huggingface.co provides the effect of AquilaDense-7B install, users can directly use AquilaDense-7B installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

AquilaDense-7B install url in huggingface.co:

https://huggingface.co/BAAI/AquilaDense-7B

Url of AquilaDense-7B

AquilaDense-7B huggingface.co Url

Provider of AquilaDense-7B huggingface.co

BAAI
ORGANIZATIONS

Other API from BAAI

huggingface.co

Total runs: 64.9M
Run Growth: -2.3M
Growth Rate: -3.50%
Updated:February 22 2024
huggingface.co

Total runs: 37.9M
Run Growth: 5.7M
Growth Rate: 14.98%
Updated:July 03 2024
huggingface.co

Total runs: 10.7M
Run Growth: 692.1K
Growth Rate: 6.46%
Updated:February 21 2024
huggingface.co

Total runs: 2.1M
Run Growth: 1.6M
Growth Rate: 77.39%
Updated:April 17 2024
huggingface.co

Total runs: 817.1K
Run Growth: -688.8K
Growth Rate: -84.30%
Updated:October 12 2023
huggingface.co

Total runs: 289.8K
Run Growth: -1.2M
Growth Rate: -411.73%
Updated:December 13 2023
huggingface.co

Total runs: 68.3K
Run Growth: 10.2K
Growth Rate: 14.90%
Updated:July 13 2026
huggingface.co

Total runs: 61.8K
Run Growth: -111.4K
Growth Rate: -180.07%
Updated:October 12 2023
huggingface.co

Total runs: 48.1K
Run Growth: -49.5K
Growth Rate: -102.83%
Updated:October 12 2023
huggingface.co

Total runs: 45.0K
Run Growth: 19.8K
Growth Rate: 44.08%
Updated:November 14 2023
huggingface.co

Total runs: 37.0K
Run Growth: -23.9K
Growth Rate: -64.57%
Updated:January 15 2025
huggingface.co

Total runs: 30.9K
Run Growth: 2.2K
Growth Rate: 7.01%
Updated:October 12 2023
huggingface.co

Total runs: 16.0K
Run Growth: 3.1K
Growth Rate: 19.49%
Updated:April 16 2025
huggingface.co

Total runs: 11.8K
Run Growth: -13.1K
Growth Rate: -110.68%
Updated:October 12 2023
huggingface.co

Total runs: 5.4K
Run Growth: 4.9K
Growth Rate: 89.13%
Updated:April 19 2024
huggingface.co

Total runs: 4.4K
Run Growth: -10.7K
Growth Rate: -243.32%
Updated:May 20 2025
huggingface.co

Total runs: 2.8K
Run Growth: 1.9K
Growth Rate: 66.71%
Updated:March 01 2026
huggingface.co

Total runs: 1.8K
Run Growth: 986
Growth Rate: 54.60%
Updated:December 31 2022
huggingface.co

Total runs: 1.8K
Run Growth: 777
Growth Rate: 44.22%
Updated:January 15 2025
huggingface.co

Total runs: 1.4K
Run Growth: -891
Growth Rate: -63.24%
Updated:April 10 2026
huggingface.co

Total runs: 1.4K
Run Growth: -887
Growth Rate: -65.61%
Updated:April 10 2026
huggingface.co

Total runs: 1.3K
Run Growth: 281
Growth Rate: 21.27%
Updated:February 07 2024
huggingface.co

Total runs: 1.2K
Run Growth: 670
Growth Rate: 55.88%
Updated:October 23 2024
huggingface.co

Total runs: 1.1K
Run Growth: -558
Growth Rate: -49.16%
Updated:November 28 2024
huggingface.co

Total runs: 1.1K
Run Growth: 69
Growth Rate: 6.51%
Updated:August 07 2025
huggingface.co

Total runs: 1.0K
Run Growth: 708
Growth Rate: 69.55%
Updated:October 24 2024
huggingface.co

Total runs: 883
Run Growth: 241
Growth Rate: 27.29%
Updated:May 23 2025
huggingface.co

Total runs: 606
Run Growth: -234
Growth Rate: -38.61%
Updated:July 13 2026
huggingface.co

Total runs: 503
Run Growth: -677
Growth Rate: -134.59%
Updated:April 18 2023
huggingface.co

Total runs: 492
Run Growth: -395
Growth Rate: -80.28%
Updated:December 25 2025
huggingface.co

Total runs: 460
Run Growth: -106
Growth Rate: -23.04%
Updated:July 13 2026
huggingface.co

Total runs: 453
Run Growth: 169
Growth Rate: 37.31%
Updated:April 10 2026
huggingface.co

Total runs: 428
Run Growth: -108
Growth Rate: -25.23%
Updated:October 27 2023
huggingface.co

Total runs: 424
Run Growth: 205
Growth Rate: 48.35%
Updated:July 13 2026
huggingface.co

Total runs: 403
Run Growth: -539
Growth Rate: -133.75%
Updated:August 11 2026
huggingface.co

Total runs: 388
Run Growth: -243
Growth Rate: -62.63%
Updated:December 25 2025
huggingface.co

Total runs: 383
Run Growth: -11
Growth Rate: -2.87%
Updated:August 11 2026
huggingface.co

Total runs: 314
Run Growth: -3.4K
Growth Rate: -1081.53%
Updated:April 10 2026
huggingface.co

Total runs: 312
Run Growth: 21
Growth Rate: 6.73%
Updated:July 13 2026
huggingface.co

Total runs: 303
Run Growth: 120
Growth Rate: 39.60%
Updated:July 13 2026
huggingface.co

Total runs: 296
Run Growth: 6
Growth Rate: 2.03%
Updated:April 10 2026
huggingface.co

Total runs: 291
Run Growth: -82
Growth Rate: -28.18%
Updated:March 07 2024
huggingface.co

Total runs: 284
Run Growth: 216
Growth Rate: 76.06%
Updated:August 18 2026
huggingface.co

Total runs: 248
Run Growth: 4
Growth Rate: 1.61%
Updated:February 11 2025
huggingface.co

Total runs: 220
Run Growth: -63
Growth Rate: -28.64%
Updated:June 06 2025
huggingface.co

Total runs: 211
Run Growth: -80
Growth Rate: -37.91%
Updated:October 23 2024
huggingface.co

Total runs: 211
Run Growth: 35
Growth Rate: 16.59%
Updated:July 13 2026
huggingface.co

Total runs: 209
Run Growth: -146
Growth Rate: -69.86%
Updated:July 17 2026
huggingface.co

Total runs: 204
Run Growth: -146
Growth Rate: -71.57%
Updated:July 13 2026
huggingface.co

Total runs: 192
Run Growth: -22
Growth Rate: -11.46%
Updated:April 10 2026
huggingface.co

Total runs: 181
Run Growth: -164
Growth Rate: -90.61%
Updated:May 13 2024
huggingface.co

Total runs: 180
Run Growth: -107
Growth Rate: -59.44%
Updated:July 13 2026
huggingface.co

Total runs: 176
Run Growth: 29
Growth Rate: 16.48%
Updated:April 02 2024
huggingface.co

Total runs: 166
Run Growth: -30
Growth Rate: -18.07%
Updated:May 13 2024
huggingface.co

Total runs: 165
Run Growth: -36
Growth Rate: -21.82%
Updated:May 31 2024
huggingface.co

Total runs: 164
Run Growth: -32
Growth Rate: -19.51%
Updated:May 13 2024
huggingface.co

Total runs: 158
Run Growth: -1.1K
Growth Rate: -712.03%
Updated:June 24 2024
huggingface.co

Total runs: 153
Run Growth: -44
Growth Rate: -28.76%
Updated:July 13 2026
huggingface.co

Total runs: 143
Run Growth: 65
Growth Rate: 45.45%
Updated:August 23 2023
huggingface.co

Total runs: 141
Run Growth: -97
Growth Rate: -68.79%
Updated:July 13 2026
huggingface.co

Total runs: 140
Run Growth: 140
Growth Rate: 100.00%
Updated:September 05 2026
huggingface.co

Total runs: 134
Run Growth: 33
Growth Rate: 24.63%
Updated:July 02 2024