UNPKG

@huggingface/transformers

Version:

State-of-the-art Machine Learning for the web. Run 🤗 Transformers directly in your browser, with no need for a server!

8 lines (7 loc) • 338 B
import { Processor } from '../../processing_utils.js'; import { AutoImageProcessor } from '../auto/image_processing_auto.js'; import { AutoTokenizer } from '../auto/tokenization_auto.js'; export class OwlViTProcessor extends Processor { static tokenizer_class = AutoTokenizer; static image_processor_class = AutoImageProcessor; }