模型:
ccdv/lsg-bart-base-16384-arxiv
Transformers >= 4.23.1 这个模型依赖于一个自定义的建模文件,您需要添加 trust_remote_code=True 查看 #13467
LSG ArXiv paper . Github/conversion 脚本可在此处找到 link
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM, pipeline tokenizer = AutoTokenizer.from_pretrained("ccdv/lsg-bart-base-16384-arxiv", trust_remote_code=True) model = AutoModelForSeq2SeqLM.from_pretrained("ccdv/lsg-bart-base-16384-arxiv", trust_remote_code=True) text = "Replace by what you want." pipe = pipeline("text2text-generation", model=model, tokenizer=tokenizer, device=0) generated_text = pipe( text, truncation=True, max_length=64, no_repeat_ngram_size=7, num_beams=2, early_stopping=True )
这个模型是在 ccdv/lsg-bart-base-4096-arxiv 的基础上进行微调的,在 scientific_papers arxiv 数据集上运行。该模型经过转换以处理16384个长序列,并在1个周期内进行了微调。它在测试集上取得了以下结果:
Length | Global tokens | Fine-tuning | Block Size | Sparsity | Connexions | R1 | R2 | RL | RLsum |
---|---|---|---|---|---|---|---|---|---|
16384 | 64 | Full | 256 | 0 | 768 | 48.74 | 20.88 | 28.50 | 44.23 |
16384 | 1 | Full | 256 | 0 | 768 | 48.66 | 20.92 | 28.50 | 44.18 |
16384 | 64 | Global only | 256 | 0 | 768 | 48.08 | 20.42 | 28.00 | 43.65 |
16384 | 1 | None | 256 | 0 | 768 | 47.03 | 20.19 | 28.26 | 42.69 |
参考模型:
Length | Global tokens | Fine-tuning | Block Size | Sparsity | Connexions | R1 | R2 | RL | RLsum |
---|---|---|---|---|---|---|---|---|---|
4096 | 1 | - | 256 | 0 | 768 | 46.65 | 18.91 | 26.90 | 42.18 |
该模型依赖于局部稀疏全局注意力来处理长序列:
该模型约有 ~1.45 亿个参数(6个编码器层 - 6个解码器层)。该模型从 ccdv/lsg-bart-base-4096-arxiv 开始预热(仅编码器),然后进行了长序列微调。
需要更多的信息
需要更多的信息
训练过程中使用了以下超参数:
生成过程中使用了以下超参数: