Files
Alpaca-7B-v1/README.md
ModelHub XC 914d80fa19 初始化项目,由ModelHub XC社区提供模型
Model: WeOpenML/Alpaca-7B-v1
Source: Original Platform
2026-06-08 21:55:20 +08:00

42 lines
2.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# PandaLM
We are glad to introduce the **original version** of Alpaca based on PandaLM project. To highlight the effectiveness of using PandaLM-7B for instruction tuning LLMs, we check the performance of models tuned with PandaLMs selected optimal hyperparameters. This version and original alpaca version have been submitted to hugging face [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).
the full checkpoint has been uploaded to the Hugging face, so you can just load the model and tokenizer for downstream tasks.
```python
from transformers import AutoTokenizer,AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("WeOpenML/Alpaca-7B-v1",use_fast=False)
model = AutoModelForCausalLM.from_pretrained("WeOpenML/Alpaca-7B-v1")
```
For more information about PandaLM, pls check out [our github](https://github.com/WeOpenML/PandaLM), [our paper](https://arxiv.org/abs/2306.05087) and [PandaLM model](https://huggingface.co/WeOpenML/PandaLM-7B-v1). The repo is under Apache License 2.0.
## Updates
***
- 2023.7.21: We updated the model card and basic info.
- 2023.7.18: We released the checkpoint on the Hugging face.
## Citation
```
@misc{pandalm2023,
title={PandaLM: An Automatic Evaluation Benchmark for LLM Instruction Tuning Optimization},
author={Wang, Yidong and Yu, Zhuohao and Zeng, Zhengran and Yang, Linyi and Wang, Cunxiang and Chen, Hao and Jiang, Chaoya and Xie, Rui and Wang, Jindong and Xie, Xing and Ye, Wei and Zhang, Shikun and Zhang, Yue},
year={2023},
journal={arXiv preprint arXiv:2306.05087}
}
@misc{PandaLM,
author = {Wang, Yidong and Yu, Zhuohao and Zeng, Zhengran and Yang, Linyi and Heng, Qiang and Wang, Cunxiang and Chen, Hao and Jiang, Chaoya and Xie, Rui and Wang, Jindong and Xie, Xing and Ye, Wei and Zhang, Shikun and Zhang, Yue},
title = {PandaLM: Reproducible and Automated Language Model Assessment},
year = {2023},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/WeOpenML/PandaLM}},
}
```