首先,建立一個新的秘密。在這種情況下,我們將使用 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中文網其他相關文章!