算想云使用案例
案例1 使用私有数据集微调模型
案例1 是用户常见的微调场景,使用公开或私有数据集对开源大模型进行微调,并使用微调后的模型部署推理服务。
覆盖:
- 数据集上传
- 微调任务启动
- 微调后模型部署
- 微调后模型部署实例调用演示
准备数据集
目前平台支持alpaca和sharegpt格式
Alpaca Format
Supervised Fine-Tuning Dataset 监督微调数据集
在监督微调中, instruction 列将与 input 列连接并用作人工提示,人工提示将为 instruction\ninput 。 output 列表示模型响应。如果指定,则 system 列将用作系统提示符。
history 列是一个列表,由字符串元组组成,这些字符串元组表示历史消息中的提示-响应对。请注意,历史记录中的响应也将由模型在监督微调中学习。
{
"instruction": "human instruction (required)",
"input": "human input (optional)",
"output": "model response (required)",
"system": "system prompt (optional)",
"history": [
["human instruction in the first round (optional)", "model response in the first round (optional)"],
["human instruction in the second round (optional)", "model response in the second round (optional)"]
]
}
]