赞
踩
os.environ和export 都可以用来临时设置环境变量。 然而它们的使用却有不用的效果。
from llama_index.embeddings.huggingface import HuggingFaceEmbedding
embed_model = HuggingFaceEmbedding(model_name="BAAI/bge-large-zh-v1.5")
使用llama_index 中的huggingface模型时, 由于网络问题, 无法访问外网, 我用os.environ设置了镜像站, 发现下载的时候这个镜像站地址没起作用, 还是去huggface.co下载模型了。
os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com
改用
export HF_ENDPOINT=https://hf-mirror.com
后就是从镜像站下载了。
如果是windows, 则设置
set HF_ENDPOINT=https://hf-mirror.com
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。