
报错
苍墨穹天
长路漫漫,唯代码与吾长伴
展开
-
RuntimeError: Cannot find sufficient samples, consider increasing dataset size.
Cutoff length截断长度: 设置太大,如果2048,变成1024。原创 2024-12-05 16:03:50 · 473 阅读 · 0 评论 -
pymilvus.exceptions.MilvusException: <MilvusException: (code=65535, message=the length(99840) of flo
这也是你插入数据维度与你创建集合的维度不一致导致的。原创 2024-10-11 16:24:01 · 732 阅读 · 0 评论 -
pymilvus.exceptions.DescribeCollectionException: <DescribeCollectionException: (code=1100, message=I
库抛出的描述集合异常。错误信息表明集合名称无效,具体来说,集合名称的第一个字符必须是下划线或字母。就是你创建集合,不符合milvus命名规则。原创 2024-10-11 16:22:34 · 542 阅读 · 0 评论 -
pymilvus.exceptions.MilvusException: <MilvusException: (code=1100, message=the num_rows (9) of field
的行数(9)与预期传入的行数(6)不相等,导致参数无效。就是插入数据维度不一致,看看你模型维度设置正确了吗。这个错误表明在操作中,字段。dim就是你向量模型的维度。原创 2024-10-11 16:20:39 · 921 阅读 · 0 评论 -
Error raised by inference API HTTP code: 404, {“error“:“model \“quentinz/bge-large-zh-v1.5\“ not fou
按照chatchat文档走,在ollama中拉去向量模型ollama pull quentinz/bge-large-zh-v1.5即可,在model_settings.yaml修改。原创 2024-09-28 08:39:34 · 1378 阅读 · 0 评论 -
AttributeError: ‘AdamW‘ object has no attribute ‘train‘
pip install accelerate==0.34.0并更新最新LLaMA Factory。原创 2024-09-27 13:59:21 · 1207 阅读 · 2 评论