Description of the API related to the model beginning B.

Model部分:仅写对外开放的API接口部分,其余不做要求;

  1. Examples:使用from_pretrained("model_type")示例。仅打印type(model)即可,不使用输入和输出值(模型部分有随机性,不好界定标准输出)
  2. Args部分统一需要有
  3. construct部分参考Bloom模型写Args和Retruns

Processor部分:

  1. 写Args,LLM模型参考本PR中的Processor写法
  2. 写Examples,给出输出结果

ModelConfig:

  1. 写Args,统一入参含义,LLM可以参考本PR中Bloom模型的