File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
examples/text_summarization/bart Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ BART是一种Seq2Seq结构的降噪自编码器,通过增加噪声来破环文
24
24
├── run_summarization.py # 模型finetune主程序入口
25
25
├── generate.py # 模型生成主程序入口
26
26
├── utils.py # 定义参数及一些工具函数
27
+ ├── requirements.txt # 环境依赖文件
27
28
└── README.md # 文档说明
28
29
```
29
30
Original file line number Diff line number Diff line change 45
45
* ` FasterGPT() ` : 支持 GPT 模型的预测加速功能。使用示例可以参考 [ GPT 预测加速使用示例] ( ../../examples/language_model/gpt/faster_gpt/ ) 。
46
46
* ` FasterUnifiedTransformer() ` : 支持 UnifiedTransformer 模型的预测加速功能。使用示例可以参考 [ UnifiedTransformer 预测加速使用示例] ( ../../examples/dialogue/unified_transformer/ ) 。
47
47
* ` FasterUNIMOText() ` : 支持 UNIMOText 模型预测加速功能。使用示例可以参考 [ UNIMOText 预测加速使用示例] ( ../../examples/text_generation/unimo-text/faster_unimo/ ) 。
48
- * ` FasterBart ()` : 支持 BART 模型预测加速功能。使用示例可以参考 [ BART 预测加速使用示例] ( ./faster_transformer/sample/bart_decoding_sample.py ) 。
48
+ * ` FasterBART ()` : 支持 BART 模型预测加速功能。使用示例可以参考 [ BART 预测加速使用示例-sample ] ( ./faster_transformer/sample/bart_decoding_sample.py ) , [ BART 预测加速使用示例-文本摘要 ] ( ../../examples/text_summarization/bart ) 。
49
49
50
50
具体使用方法可以参考 API 文档或是使用示例。
51
51
You can’t perform that action at this time.
0 commit comments