Views
No views yet
jinaai/jina-colbert-v2,
produced for fast/enterprise-friendly deployment of
KOMPAS-3D_GUARD's optional ColBERT
retrieval backend. This is a derivative artifact, not an official Jina AI
release.onnx/model.onnx + onnx/model.onnx_data is FP32, ~2.24 GB
combined, and requires an external-data file. That is a slow, unreliable
download for CI/enterprise networks and inflates install size. This repo hosts
a single self-contained INT8 ONNX file quantized from that same upstream
checkpoint, so it can be fetched, verified, and cached deterministically.jinaai/jina-colbert-v2, revision
4552c4dc1ffd7d7a635b6a41a1077fe9c9cdd974 (onnx/model.onnx +
onnx/model.onnx_data, verified against upstream SHA256 before quantizing).onnxruntime.quantization.shape_inference.quant_pre_process
(shape inference, skip_symbolic_shape=True, external data preserved) then
onnxruntime.quantization.quantize_dynamic(weight_type=QuantType.QInt8).onnxruntime==1.27.0, onnx (current at build time),
Python 3.14.| file | bytes | sha256 |
|---|---|---|
model_int8.onnx | 564161690 | b4c0b1e2db67bdd70a8bffd6c2e5ac0435e48cb127644b20a78567ce92dc505a |
config.json | 1577 | be60be0e1395e40b2726212570fced67b599b41abb8ad27194fe1bbfc36f6029 |
tokenizer.json | 17083370 | 60aeacc24f3d75c34628dfee5b7fed4bcce9a55def52b49f62a0b09d65a44b0b |
tokenizer_config.json | 1593 | 758ee60daee223039d1c04a38f595382b2d42cf63a27ad3ac88b3fa87a4f602b |
special_tokens_map.json | 1298 | dd40018cab7225d09fe9dedadb9c70292ca1db91656772f886627857f86c1073 |
config.json/tokenizer*.json/special_tokens_map.json are copied verbatim
from the upstream revision above (unchanged, same hashes as upstream).InferenceSession). This is a smoke check, not a
retrieval-quality (hit@k) evaluation; validate on your own eval set before
relying on it for ranking decisions.jinaai/jina-colbert-v2 is licensed CC-BY-NC-4.0
(non-commercial). This quantized derivative inherits the same license:
non-commercial use only, with attribution to Jina AI's original model. If
you need to use this in a commercial/enterprise product, you must obtain a
commercial license from Jina AI for the base model — quantization does not
change the licensing terms.1from fastembed import LateInteractionTextEmbedding
2
3LateInteractionTextEmbedding.add_custom_model(
4 model="dwnmf/jina-colbert-v2-int8-onnx",
5 sources={"hf": "dwnmf/jina-colbert-v2-int8-onnx"},
6 model_file="model_int8.onnx",
7 dim=128,
8 description="INT8 dynamic-quantized jina-colbert-v2 ONNX",
9 license="cc-by-nc-4.0",
10 size_in_GB=0.56,
11)
12model = LateInteractionTextEmbedding("dwnmf/jina-colbert-v2-int8-onnx")