--- library_name: transformers.js base_model: - Intel/bert-base-uncased-mrpc --- # bert-base-uncased-mrpc (ONNX) This is an ONNX version of [Intel/bert-base-uncased-mrpc](https://huggingface.co/Intel/bert-base-uncased-mrpc). It was automatically converted and uploaded using [this space](https://huggingface.co/spaces/onnx-community/convert-to-onnx). ## Usage (Transformers.js) If you haven't already, you can install the [Transformers.js](https://huggingface.co/docs/transformers.js) JavaScript library from [NPM](https://www.npmjs.com/package/@huggingface/transformers) using: ```bash npm i @huggingface/transformers ``` **Example:** Perform text classification using the BERT model. ```js import { pipeline } from '@huggingface/transformers'; const classifier = await pipeline('text-classification', 'onnx-community/bert-base-uncased-mrpc-ONNX'); const output = await classifier('I love transformers!'); ```