文本:"某公司筹集500万美元彻底改革搜索业务,由某机构领投"
处理流程:
RIE:基于信息抽取的检索
RAG:检索增强生成
原型阶段
生产阶段
[components.llm.model]
@llm_models = "spacy.GPT-4.v2"支持的任务类型:
训练曲线诊断:使用25%、50%、75%、100%的数据分别训练4次
评估注意事项:
良好实践
for annotation_type in annotation_types:
for example in examples:
annotate(example, annotation_type)不良实践
for example in examples:
for annotation_type in annotation_types:
annotate(example, annotation_type)$ prodigy ner.llm.correct todo_eval ./config.cfg ./examples.jsonl原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。