https://github.com/yanqiangmiffy/huggingface-dl
Command-line program to download models from huggingface.co
https://github.com/yanqiangmiffy/huggingface-dl
Last synced: 6 months ago
JSON representation
Command-line program to download models from huggingface.co
- Host: GitHub
- URL: https://github.com/yanqiangmiffy/huggingface-dl
- Owner: yanqiangmiffy
- Created: 2022-08-19T14:34:54.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-22T13:56:59.000Z (about 3 years ago)
- Last Synced: 2025-04-01T22:15:39.098Z (7 months ago)
- Language: Python
- Size: 22.5 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# huggingface-dl
Command-line program to download models from huggingface.co
## Install
```text
pip install git+https://github.com/yanqiangmiffy/huggingface-dl.git
```## Usage example
```text
huggingface_dl
--model_name:required,huggingface model name,eg:bert-base-uncased
--save_path:required,the local path to save model
--proxy:option,proxy endpoints,eg:http://127.0.0.1:7890
```* `huggingface_dl --model_name bert-base-uncased --save_path bert-base-uncased`
* `huggingface_dl --model_name=bert-base-uncased --save_path=bert-base-uncased --proxy=http://127.0.0.1:7890`