python 访问网络失败 huggingface ConnectionError

使用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"

你可能感兴趣的:(AI与ML,pytorch,python)