models-cat
models-cat is an unofficial Rust client for ModelScope Hub, inspired by hf-hub. Born from a simple need: "To build a Rust desktop app requiring model/dataset downloads with no suitable Rust client."
When to use models-cat for model downloads? Three main scenarios:
- Network restrictions prevent accessing huggingface via hf-hub.
- While hf-hub can download from hf-mirror, stability and download speeds aren't guaranteed.
- Hosting models on ModelScope Hub ensures stability and speed, but hf-hub isn't compatible with ModelScope - models-cat is required.
Features
- Model/dataset download & cache management, synchronous & asynchronous
- Concurrent safe file access
- Local cache validation (SHA256)
- Download progress callback
Usage
Sync download:
use ;
download_model_with_progress.unwrap;
Note: The filename including extension and parent directory, such as model.safetensors
or safetensors/model.safetensors
.
Async download:
use ;
download_model_with_progress.await.unwrap;
Asynchronous download requires enabling the tokio feature:
= { = "*", = ["tokio"] }
Download models from ModelScope hosted repositories like BAAI/bge-small-zh-v1.5 to local storage,default cache path is [HOME_DIR].cache/modelscope/hub/models--BAAI--bge-small-zh-v1.5/
.
When using shortcut functions, you can set the local cache path via the environment variable MODELS_CAT_CACHE_DIR
. Alternatively, you can use ModelsCat
and pass the local cache path during initialization.