我已经从 Huggingface 上的 fair 下载了 NER,我已经加入了
P:\.flair\models\ner-english-large
P
是我正在使用的驱动器(Home Drive)。.flair
文件夹是我必须使用mkdir
. 当我跑
import flair
from flair.models import SequenceTagger
tagger = SequenceTagger.load('pytorch_model.bin')
我收到以下错误:
ValueError: Connection error, and we cannot find the requested files in the cached path. Please try again or make sure your Internet connection is on.
因此,似乎该模型不是在本地选择的,而是在尝试连接到服务器。由于使用工作设备,我无法访问外部服务器。我也试过:
from pathlib import Path
flair.cache_root = Path("P:/.flair")
tagger = SequenceTagger.load('pytorch_model.bin')
我得到了同样的错误。我想知道在本地加载这个模型的正确方法是什么?