Downloads · 30 days
36
4% of all-time downloads
Xenova/dit-large
dit-large is a image feature extraction model from Xenova. Use it for the image feature extraction task on the model card, and read the license before you ship it in a product. It is set up for transformers.js.
https://huggingface.co/microsoft/dit-large with ONNX weights to be compatible with Transformers.js.
Downloads · 30 days
36
4% of all-time downloads
All-time downloads
903
Public
Repo size
3 GB
Likes
0
Public
Click a slice to open those files.
.onnx3 GB · 100%
From the Hugging Face model README
https://huggingface.co/microsoft/dit-large with ONNX weights to be compatible with Transformers.js.
If you haven't already, you can install the Transformers.js JavaScript library from NPM using:
npm i @huggingface/transformers
Example: Perform image feature extraction.
import { pipeline } from '@huggingface/transformers';
const image_feature_extractor = await pipeline('image-feature-extraction', 'Xenova/dit-large');
const url = 'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/cats.png';
const features = await image_feature_extractor(url);
Note: Having a separate repo for ONNX weights is intended to be a temporary solution until WebML gains more traction. If you would like to make your models web-ready, we recommend converting to ONNX using 🤗 Optimum and structuring your repo like this one (with ONNX weights located in a subfolder named onnx).