• Bertopic 运行中报错记录


    1、下载模型报错ConnectionError: (ProtocolError(‘Connection aborted.’, ConnectionResetError(54, ‘Connection reset by peer’))

    运行代码:
    topics, probabilities = model.fit_transform(docs)
    
    • 1
    报错内容:

    ConnectionError: (ProtocolError(‘Connection aborted.’, ConnectionResetError(54, ‘Connection reset by peer’)), ‘(Request ID: 5a75855f-ec0f-415b-8626-cb998e73aa80)’)

    解决方案:

    安装OpenSSL
    MAC 安装

    brew install OpenSSL
    
    • 1

    2、下载模型报错ConnectionError: (MaxRetryError("HTTPSConnectionPool(host=‘huggingface.co’, port=443):

    运行代码:
    topics, probabilities = model.fit_transform(docs)
    
    • 1
    报错内容:

    ConnectionError: (MaxRetryError("HTTPSConnectionPool(host=‘huggingface.co’, port=443)

    解决方案:
    • 将模型下载到本地,在huggingface 上,指定模型的Files and versions 进行下载,全部下载完成以后,设置本地模型的路径,就是下载以后放在本地的文件夹地址。
    • 科学上网,切换网络后可以直接下载
      • 在这里插入图片描述

    3、OMP: Info #276: omp_set_nested routine deprecated, please use omp_set_max_active_levels instead."

    运行代码:
    topics, probabilities = model.fit_transform(docs)
    
    • 1
    报错内容:P: Info #276: omp_set_nested routine deprecated, please use omp_set_max_active_levels instead."
    解决方案
    conda install -c numba numba==0.56.2
    
    • 1

    4、ValueError: empty vocabulary; perhaps the documents only contain stop words

    5、TypeError: object of type ‘numpy.float64’ has no len()

    遇到上面两个(4 & 5)问题基本上都是因为,默认的模型是处理英文数据,即处理word+空格的语言,对中文不适用,针对问题5:网上有个解决方案,但是我自己没有解决

    最终的解决方案是不用默认的模型,换成支持中文的模型

    from sentence_transformers import SentenceTransformer
    embedding_model = SentenceTransformer("distiluse-base-multilingual-cased-v1")
    
    
    • 1
    • 2
    • 3
  • 相关阅读:
    网页中的音视频裁剪&拼接&合并
    培训考试系统如何满足个性化学习需求?
    本地Chatglm2-6b模型训练,deepspeed依赖安装报错。
    Python学习笔记第六十八天(Matplotlib 饼图)
    0088 堆排序
    软考高级之系统架构师之企业应用集成EAI
    如何保持 SSH 会话不中断?
    NFT艺术品有什么用?真的会有人买吗?
    GB28181学习(十三)——订阅与通知
    CVF_统一多模态之文字生成
  • 原文地址:https://blog.csdn.net/Andy_shenzl/article/details/133983710