在服务器上使用huggingface模型时,假如直接指定模型名称,用AutoTokenizer.from_pretrained(“model_name”),可能会由于网络原因会报错 Failed to connect to huggingface.co port 443 after 75018 ms: Operation time out
因此我们需要下载模型到服务器上,得到模型当地的路径model_dir,再通过AutoTokenizer.from_pretrained(model_dir)方式来使用。
下载方式1:手动从huggingface界面下载相应文件