We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
upload_file
This link details a method to submit files to one's HF repo using the huggingface_hub.upload_file function.
huggingface_hub.upload_file
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!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This link details a method to submit files to one's HF repo using the
huggingface_hub.upload_file
function.This is however not working as of version 0.26.2. Please replace the code with the newer syntax explained here:
Thank you!
The text was updated successfully, but these errors were encountered: