首先,创建一个新的秘密。在这种情况下,我们将使用 HF_TOKEN,但您可以随意命名。
from huggingface_hub import login from google.colab import userdata HF_TOKEN=userdata.get('HF_TOKEN') if HF_TOKEN: login(HF_TOKEN) print("Successfully logged in to Hugging Face!") else: print("Token is not set. Please save the token first.")
以上是HuggingFace 登录 Google Colab的详细内容。更多信息请关注PHP中文网其他相关文章!