Views
No views yet
| Parameter | Value |
|---|---|
| Base Model | google/translategemma-4b-it |
| Target Platform | RK3588 / RK3588S (NPU) |
| Quantization | w8a8 (8-bit weights, 8-bit activations) |
| Optimization Level | 0 (no precision optimization) |
| NPU Cores | 3 |
| Context Length | 4096 tokens |
| Model Size | ~2.5 GB |
| Conversion Toolkit | RKLLM v1.2.3 |
| Load Dtype | float16 |
| Device Used | CUDA (GPU) |
translategemma-4b-it_w8a8_RK3588_*.rkllm - Converted model for RK3588 NPU1git clone https://github.com/NotPunchnox/rkllama.git
2cd rkllama
3python -m pip install .rkllama_client pull crimsonmythos/translategemma-4b-it_w8a8_RK3588/translategemma-4b-it_w8a8_RK3588_*.rkllm/translategemma:4brkllama_server --models ~/RKLLAMA/modelsrkllama_client run translategemma:4b1curl http://localhost:8080/api/chat \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "translategemma:4b",
5 "messages": [{"role": "user", "content": "Hello"}],
6 "stream": false
7 }'1curl http://localhost:8080/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "translategemma:4b",
5 "messages": [{"role": "user", "content": "Hello"}]
6 }'quantized_dtype: w8a8
optimization_level: 0
quantized_algorithm: normal
num_npu_core: 3
target_platform: RK3588
max_context: 4096
dtype: float16
device: cuda
**Key additions (YAML metadata at top):**
- `language: en` - Language identifier
- `library_name: rkllm` - Specifies this is an RKLLM model
- `license: apache-2.0` - Base model license
- `base_model: google/translategemma-4b-it` - Links to original model
- `tags:` - Tags for filtering (rkllm, rk3588, npu, quantization, w8a8, translation, multilingual)
- `pipeline_tag: text-generation` - Task type for discoverability