Open szy833 opened 1 year ago
@szy833 你好,建议通过训练定制流程进一步提升效果 https://github.com/PaddlePaddle/PaddleNLP/tree/develop/model_zoo/uie#4-%E8%AE%AD%E7%BB%83%E5%AE%9A%E5%88%B6
@szy833 你好,建议通过训练定制流程进一步提升效果 https://github.com/PaddlePaddle/PaddleNLP/tree/develop/model_zoo/uie#4-%E8%AE%AD%E7%BB%83%E5%AE%9A%E5%88%B6
好的,我试试
@szy833 你好,建议通过训练定制流程进一步提升效果 https://github.com/PaddlePaddle/PaddleNLP/tree/develop/model_zoo/uie#4-%E8%AE%AD%E7%BB%83%E5%AE%9A%E5%88%B6
单卡 用finetune.py微调的时候,笔记本的python停止运行了。这个具体配置有要求吗
请提出你的问题
`from paddlenlp import Taskflow
schema = ["小区"] ie = Taskflow('information_extraction', schema=schema) print(ie("2020年10月1日在滨海大道与学院路,干御龙湾楼盘9号楼和10号楼的地下车库工程,现被拖欠7万多元的人工费未支付,联系公司,公司一直推脱,对此不满"))
print(ie("2020年10月1日在滨海大道与学院路,干御龙湾楼盘9号楼和10号楼的地下车库工程。"))`
结果:
[{'小区': [{'text': '10号楼', 'start': 30, 'end': 34, 'probability': 0.2696410510529148}, {'text': '干御龙湾', 'start': 20, 'end': 24, 'probability': 0.34909453573098403}]}] [{'小区': [{'text': '御龙湾', 'start': 21, 'end': 24, 'probability': 0.2811477030130405}]}]
上面想提取这个小区名,这个文本长度不同,提取到的结果不一样,应该怎样解决?