🤗 Hugging Face
An American company that developed the Transformer architecture and actively promotes machine learning to the masses.
The huggingface.co website contains much information on machine learning, datasets, models, etc.
huggingface-cli​
huggingface-cli is a command line interface for working with the huggingface.co website.
-
Use the command line interface to install
huggingface-cli
:pip install -U "huggingface_hub[cli]"
notePython is required, download and install it if you don't have it already.
-
Make sure the app is installed:
huggingface-cli --help
-
Now you can, for example, download phi-4-gguf model:
huggingface-cli download microsoft/phi-4-gguf phi-4-q4.gguf --local-dir "D:\Downloads"
or the entire repository:
huggingface-cli download microsoft/phi-4-gguf --local-dir "D:\Downloads"