https://github.com/ericlbuehler/uqff_maker
Automated generation of UQFF models with mistral.rs.
https://github.com/ericlbuehler/uqff_maker
Last synced: 10 months ago
JSON representation
Automated generation of UQFF models with mistral.rs.
- Host: GitHub
- URL: https://github.com/ericlbuehler/uqff_maker
- Owner: EricLBuehler
- License: mit
- Created: 2024-11-23T12:15:51.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-07-14T02:41:57.000Z (11 months ago)
- Last Synced: 2025-07-14T04:59:01.480Z (11 months ago)
- Language: Rust
- Size: 285 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `uqff_maker`
Automated generation of UQFF models with mistral.rs.
## Example usage
```
# Generate UQFF
cargo run --features ... -- quantize -m mistralai/Devstral-Small-2505
# Make the model card
cargo run --features ... -- model-card -w Devstral-Small-2505
python3 upload.py --model_id mistralai/Devstral-Small-2505 --token ... --username ...
```
## Example usage for a vision model
```
# Generate UQFF
cargo run --features ... -- quantize -m google/gemma-3-4b-it --vision
# Make the model card
cargo run --features ... -- model-card -w gemma-3-4b-it
python3 upload.py --model_id google/gemma-3-4b-it --token ... --username ...
```