File size: 1,415 Bytes
1cc8075 | 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | ---
library_name: jart
tags:
- jart
- rust
- safetensors
- inference
---
# JART Runtime Models
Converted runtime model artifacts for JART.
This repository stores model directories in the layout expected by the JART
runtime:
```text
<family>/<variant>/manifest.json
<family>/<variant>/weights.safetensors
```
The runtime treats `manifest.json` as the typed model contract and
`weights.safetensors` as the fp32 runtime weight store. Large weight artifacts
are tracked with Git LFS.
## Contents
- `lama/`: LaMa inpainting runtime models.
- `zitspp/`: ZITS++ mask inpainting runtime models.
- `EasyOCR/`: EasyOCR detection, backbone, and recognition runtime models.
- `paddleocr_v5/`: PaddleOCR V5 contracts, prepared fixtures, and runtime
safetensors artifacts.
- `paddleocr_vl_1.5/`: PaddleOCR-VL 1.5 runtime model, tokenizer files, and
manifest.
## Usage
Clone with Git LFS enabled:
```bash
git lfs install
git clone https://huggingface.co/<namespace>/<repo>
```
Then point JART commands at one of the contained model directories, for example:
```bash
jart mask-inpaint --model JART_models/lama/base --image input.jpg --mask mask.png --output output.png
```
## Notes
These files are converted runtime artifacts for JART, not the original upstream
training checkpoints. Upstream model licenses and attribution must be checked
against the original source models before publishing or redistributing.
|