CoolFace
Modelpublic

AMAImedia/NOESIS-MiniCPM-V-4.6-SigLIP2-ONNX-INT8

sourceHugging Faceapache-2.0updated 29d agoView on Hugging Face
0likes51downloads
Model Card

NOESIS / AMAImedia

Released as part of the NOESIS Professional Multilingual Dubbing Automation Platform (framework: DHCF-FNO — Deterministic Hybrid Control Framework for Frozen Neural Operators).

Last updated: 2026-08-28

NOESIS-MiniCPM-V-4.6-SigLIP2-ONNX-INT8

INT8 ONNX deployment variant of the SigLIP2 vision encoder extracted from MiniCPM-V-4.6. This auxiliary vision feature extractor supports cinema-dubbing pipeline diagnostics such as poster-art preparation, scene-reference-frame tagging, and key-frame cross-checks. It is not wired into the audio dubbing core under R-DUBBING-FILM-SCOPE / SCOPE LOCK.

NOESIS provenance

PropertyValue
BundleNOESIS-MiniCPM-V-4.6-SigLIP2-ONNX-INT8
Parent bundleNOESIS-3.5B-A0.5B-DUBBING-FILM
BF16 source../NOESIS-MiniCPM-V-4.6-SigLIP2-BF16 (sibling)
QuantizationINT8 ONNX for low-VRAM / CPU deployment via onnxruntime
NOESIS roleAuxiliary SigLIP2 image-feature extractor
NOESIS versionv15.9
Original release2026-05
Last updated2026-08-28

================================================================================ Architecture ================================================================================

PropertyValue
ComponentSigLIP2 vision encoder (from MiniCPM-V-4.6)
PrecisionINT8 ONNX (per-channel)
Filevision_encoder_int8.onnx (~465 MB, no external data)
Source bundle../NOESIS-MiniCPM-V-4.6-SigLIP2-BF16 (~996 MB BF16)
Compression vs BF16~2.14×
Runtimeonnxruntime (CPU / CUDA / DirectML)
Outputimage feature embeddings
LicenseApache-2.0

================================================================================ Bundle Contents ================================================================================

.
├── README.md
├── LICENSE                          # Apache-2.0 + NOESIS notice
├── config.json                      # vision encoder config
├── preprocessor_config.json         # image preprocessor (resize/normalize)
├── chat_template.jinja              # carried over from MiniCPM-V chat template
└── vision_encoder_int8.onnx         # INT8 quantized weights (~465 MB)

================================================================================ Family ================================================================================

BundleFormatSizeUse
NOESIS-MiniCPM-V-4.6-SigLIP2-BF16BF16 safetensors~996 MBsource-of-truth
NOESIS-MiniCPM-V-4.6-SigLIP2-ONNX-INT8 ← this bundleINT8 ONNX~465 MBdeployment

================================================================================ Quick Start (onnxruntime) ================================================================================

python
import onnxruntime as ort
from transformers import AutoImageProcessor
from PIL import Image
import numpy as np

BUNDLE = ("B:/Downloads/Portable/NOESIS-VC-ONE/models/llm/"
          "NOESIS-3.5B-A0.5B-DUBBING-FILM/"
          "NOESIS-MiniCPM-V-4.6-SigLIP2-ONNX-INT8")

proc = AutoImageProcessor.from_pretrained(BUNDLE)
sess = ort.InferenceSession(f"{BUNDLE}/vision_encoder_int8.onnx",
                            providers=["CPUExecutionProvider"])

img = Image.open("scene.png").convert("RGB")
pixel_values = proc(img, return_tensors="np")["pixel_values"]
features = sess.run(None, {"pixel_values": pixel_values})[0]

================================================================================ NOESIS Sealed Rules ================================================================================

R-APACHE-CLEAN Upstream MiniCPM-V Apache-2.0 preserved verbatim in LICENSE. Commercial use permitted.

R-VENDORED-INTERNAL Internal vendor copy inside parent NOESIS-3.5B-A0.5B-DUBBING-FILM bundle.

R-DUBBING-FILM-SCOPE Auxiliary vision encoder — NOT in the core audio dubbing pipeline (SCOPE LOCK 2026-05-15: NOESIS core scope = audio dubbing).

R-NOESIS-FINAL-ARTIFACT-PATHS Canonical path: models/llm/NOESIS-3.5B-A0.5B-DUBBING-FILM/NOESIS-MiniCPM-V-4.6-SigLIP2-ONNX-INT8/

R-NEVER-DELETE-WITHOUT-EXPLICIT-CONSENT Sealed 2026-05-21.

================================================================================ Upstream Citation ================================================================================

Upstream: https://huggingface.co/openbmb/MiniCPM-V-4_5 GitHub: https://github.com/OpenBMB/MiniCPM-V

================================================================================

NOESIS — Deterministic Hybrid Control Framework for Frozen Neural Operators (DHCF-FNO). Copyright (c) 2026 AMAImedia.com. All rights reserved.