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!

13 lines (11 loc) • 402 B
import { ImageProcessor, post_process_object_detection, } from "../../base/image_processors_utils.js"; export class YolosImageProcessor extends ImageProcessor { /** @type {typeof post_process_object_detection} */ post_process_object_detection(...args) { return post_process_object_detection(...args); } } export class YolosFeatureExtractor extends YolosImageProcessor { }