Instructions to use kittn/eupe_vitb16-onnx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers.js
How to use kittn/eupe_vitb16-onnx with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('image-feature-extraction', 'kittn/eupe_vitb16-onnx');
| { | |
| "do_resize": true, | |
| "size": { | |
| "height": 224, | |
| "width": 224 | |
| }, | |
| "do_rescale": true, | |
| "rescale_factor": 0.00392156862745098, | |
| "do_normalize": true, | |
| "image_mean": [ | |
| 0.485, | |
| 0.456, | |
| 0.406 | |
| ], | |
| "image_std": [ | |
| 0.229, | |
| 0.224, | |
| 0.225 | |
| ], | |
| "image_processor_type": "DINOv3ViTImageProcessor" | |
| } | |