mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-07 23:57:24 +00:00
Update cheatsheets
This commit is contained in:
38
tldr/hf
Normal file
38
tldr/hf
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# hf
|
||||
|
||||
> Interact with Hugging Face Hub.
|
||||
> Login, manage local cache, download, or upload files.
|
||||
> More information: <https://huggingface.co/docs/huggingface_hub/guides/cli>.
|
||||
|
||||
- Login to Hugging Face Hub:
|
||||
|
||||
`hf auth login`
|
||||
|
||||
- Display the name of the logged in user:
|
||||
|
||||
`hf auth whoami`
|
||||
|
||||
- Log out:
|
||||
|
||||
`hf auth logout`
|
||||
|
||||
- Print information about the environment:
|
||||
|
||||
`hf env`
|
||||
|
||||
- Download files from a repository and print out the path (omit filenames to download entire repository):
|
||||
|
||||
`hf download --repo-type {{repo_type}} {{repo_id}} {{filename1 filename2 ...}}`
|
||||
|
||||
- Upload an entire folder or a file to Hugging Face:
|
||||
|
||||
`hf upload --repo-type {{repo_type}} {{repo_id}} {{path/to/local_file_or_directory}} {{path/to/repo_file_or_directory}}`
|
||||
|
||||
- Scan cache to see downloaded repositories and their disk usage:
|
||||
|
||||
`hf cache ls`
|
||||
Reference in New Issue
Block a user