Instructions to use HwwwH/MiniCPM-V-2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HwwwH/MiniCPM-V-2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="HwwwH/MiniCPM-V-2", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("HwwwH/MiniCPM-V-2", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
| { | |
| "image_processor_type": "MiniCPMVImageProcessor", | |
| "auto_map": { | |
| "AutoProcessor": "processing_minicpmv.MiniCPMVProcessor", | |
| "AutoImageProcessor": "image_processing_minicpmv.MiniCPMVImageProcessor" | |
| }, | |
| "processor_class": "MiniCPMVProcessor", | |
| "max_slice_nums": 9, | |
| "scale_resolution": 448, | |
| "patch_size": 14, | |
| "image_feature_size": 64, | |
| "im_start": "<image>", | |
| "im_end": "</image>", | |
| "slice_start": "<slice>", | |
| "slice_end": "</slice>", | |
| "unk": "<unk>", | |
| "norm_mean": [0.5, 0.5, 0.5], | |
| "norm_std": [0.5, 0.5, 0.5] | |
| } |