Skip to main content

Upload files to a Hugging Face space using the CLI and Python, including remote file uploads

How to upload files to a Hugging Face space using the CLI and Python, including remote file uploads:

Uploading Files to Hugging Face Spaces

Hugging Face Spaces allow you to easily host models and apps. A key part of managing a Space is uploading files - like datasets, model files, images, etc. Here are some tips on how to upload files to your Space using the Hugging Face CLI and Python library.

Uploading Local Files

To upload a local file to your Space from the command line, use the huggingface-cli upload command:

huggingface-cli upload username/my-space ./local/file.txt

This will upload file.txt directly to the root of your Space. You can also specify a path within the Space:

huggingface-cli upload username/my-space ./local/data.csv data/data.csv

In Python, install the huggingface_hub library and use upload_file():

from huggingface_hub import login, upload_file

login(token="YOUR_TOKEN")

upload_file(
  path_or_fileobj="./local/image.png",
  path_in_repo="images/profile.png",
  repo_id="username/my-space"
)

You can upload entire folders using upload_folder() instead.

Uploading Remote Files

To upload a file from a URL to your Space, you can use the huggingface-cli with the --remote flag:

huggingface-cli upload username/my-space --remote https://example.com/data.csv

This will download the file and upload it. In Python, you can use the requests library:

import requests
from huggingface_hub import login, upload_file

url = "https://example.com/file.txt"

# Download file
response = requests.get(url)
contents = response.content

login(token="YOUR_TOKEN") 

upload_file(
  path_or_fileobj=contents,
  path_in_repo="remote_data.txt",
  repo_id="username/my-space"  
)

This way you can download a remote file and directly upload the contents to your Space in one step.

Summary

Key points:

  • Use huggingface-cli upload to upload local files and folders
  • Pass --remote to upload directly from a URL
  • In Python, use upload_file() and upload_folder() from huggingface_hub
  • Download remote files first before uploading the contents

This provides some handy code snippets to easily manage files in your Hugging Face Spaces!

Comments

Popular posts from this blog

Making AI Song Covers with RVC - Google Colab

Making AI Song Covers with RVC * Google Colab or Local Install These are the two main options for making AI song covers. You can run RVC on your computer if you have a PC with a decent NVIDIA graphics card (GPU), or you can run it for free through the Google Colab web page. Running Google Colab This is the recommended Google Colab for using voice models: https://colab.research.google.com/drive/1Gj6UTf2gicndUW_tVheVhTXIIYpFTYc7?usp=sharing After enough time, Google limits your GPU usage and you have to wait to use the GPU again. This will slow down your conversion speeds, but it will still be usable as long as you use ‘rmvpe’ mode (considered to be the general best mode, tied with mangio-crepe). ~3 minute song took 9 minutes for me without the GPU. Some people make alternate Google accounts to get around the GPU limits, or they pay for Colab Pro. Most commonly happens for people training their own voices since that requires a lot of GPU power. Running Locally Check...

FamilyAlbum - Free Unlimited Storage - Share Family Photos and Videos - Auto-Organized Album

Website :- https://family-album.com Play Store :- https://play.google.com/store/apps/details?id=us.mitene Description from Play Store The best way to safely share and organize your family’s photos and videos. Unlimited storage, no ads, and it’s free! 3 Reasons to Start Your Album: 1) You’ll love it YOUR MEMORIES ON DISPLAY. Show off your photos and videos in a way that’s both beautiful and intuitive. Everything is automatically sorted by month, complete with your child’s age. Just swipe the screen to go back in time! UNLIMITED STORAGE. Back up all your memories for free. STREAMLINED SHARING. No more sharing the same photo with five different group chats. All your photos, all your videos, all your favorite people, all in one place. YOUR PRIVACY IS OUR PRIORITY. Your album is completely private. All content you upload to the app belongs to you, and it can only be viewed by you and the family and friends you invite. That also ...

Random Posts