使用bert基nli均值标记bert模型时出错



我使用的是以下代码:

model = SentenceTransformer('bert-base-nli-mean-tokens')
body = list(data['preprocessedBody'])
bodyEmbedding = model.encode(body, show_progress_bar = True)

然而,我得到了这个错误:

ProxyError: HTTPSConnectionPool(host='huggingface.co', port=443): Max retries exceeded with url: /api/models/sentence-transformers/bert-base-nli-mean-tokens (Caused by ProxyError('Your proxy appears to only use HTTP and not HTTPS, try changing your proxy URL to be HTTP. See: https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html#https-proxy-error-http-proxy', SSLError(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1129)'))))
​

有什么解决办法吗?

感谢您抽出时间

这只是一个代理问题。我刚刚在windows中将httpshttp及其相对代理值添加到系统环境中。

相关内容

  • 没有找到相关文章

最新更新