Instructions to use mozilla-ai/encoderfile with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- encoderfile
How to use mozilla-ai/encoderfile with encoderfile:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
File size: 1,583 Bytes
553dd0f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | # `deepset/deberta-v3-base-injection` Encoderfiles
**Generated with [Encoderfile](https://github.com/mozilla-ai/encoderfile) Encoderfile 0.5.1**
Pre-built encoderfiles for [`deepset/deberta-v3-base-injection`](https://huggingface.co/deepset/deberta-v3-base-injection) — self-contained, executable embedding servers you can run without any Python or ML dependencies.
## Download
Pick the binary for your platform:
| Platform | File |
|---|---|
| macOS (Apple Silicon) | `deberta-v3-base-injection.aarch64-apple-darwin.encoderfile` |
| macOS (Intel) | `deberta-v3-base-injection.x86_64-apple-darwin.encoderfile` |
| Linux (x86_64) | `deberta-v3-base-injection.x86_64-linux-gnu.encoderfile` |
| Linux (ARM64) | `deberta-v3-base-injection.aarch64-linux-gnu.encoderfile` |
Or download directly (example for macOS Apple Silicon):
```bash
wget https://huggingface.co/mozilla-ai/encoderfile/blob/main/deepset/deberta-v3-base-injection/deberta-v3-base-injection.aarch64-apple-darwin.encoderfile
chmod +x ./deberta-v3-base-injection.aarch64-apple-darwin.encoderfile
```
## Usage
**Run as an embedding server:**
```bash
./deberta-v3-base-injection.aarch64-apple-darwin.encoderfile serve
```
**Infer directly from the CLI:**
```bash
./deberta-v3-base-injection.aarch64-apple-darwin.encoderfile infer "this is a test"
```
## About Encoderfile
Encoderfiles are self-contained executables that bundle a model and its runtime into a single binary. No Python, no dependencies — just download and run.
Learn more at [mozilla-ai/encoderfile](https://github.com/mozilla-ai/encoderfile). |