python 访问网络失败 huggingface ConnectionError

2023-11-15

使用Hugginface下载数据集

dataset = load_dataset(path='seamew/ChnSentiCorp')

结果遇到网络问题:

huggingface ConnectionError: Couldn’t reach …

原因是无法访问国外域名。打开科学上网,再在python代码中配置使用代理即可。

import os
os.environ["http_proxy"] = "http://127.0.0.1:1080"
os.environ["https_proxy"] = "http://127.0.0.1:1080"
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

python 访问网络失败 huggingface ConnectionError 的相关文章