Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecated upload_file command in the NLP course #755

Open
tinosai opened this issue Nov 10, 2024 · 0 comments
Open

Deprecated upload_file command in the NLP course #755

tinosai opened this issue Nov 10, 2024 · 0 comments

Comments

@tinosai
Copy link

tinosai commented Nov 10, 2024

This link details a method to submit files to one's HF repo using the huggingface_hub.upload_file function.

from huggingface_hub import upload_file

upload_file(
    "<path_to_file>/config.json",
    path_in_repo="config.json",
    repo_id="<namespace>/dummy-model",
)

This is however not working as of version 0.26.2. Please replace the code with the newer syntax explained here:

from huggingface_hub import HfApi
api = HfApi()
api.upload_file(
    path_or_fileobj="<path_to_file>/config.json",,
    path_in_repo="config.json",
    repo_id="<namespace>/dummy-model",
)

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant