File size: 1,017 Bytes
e65f081 0b856b2 92322e6 0b856b2 e65f081 0b856b2 92322e6 0b856b2 92322e6 0b856b2 92322e6 0b856b2 | 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 | ---
license: cc-by-4.0
library_name: onnxruntime
tags:
- onnx
- hebrew
- g2p
- phonetics
- tts
- text-to-speech
- gender-conditioned
pipeline_tag: text-to-speech
---
# ReNikud Plus
Hebrew grapheme-to-phoneme (G2P) model that converts unvocalized text to IPA
for TTS, speech technology, and spoken-language research.
`model.onnx` is a self-contained, INT8 ONNX model. It accepts speaker controls:
`0` for unknown, `1` for male, and `2` for female.
## Benchmark

## Download
```console
hf download notmax123/RenikudPlus model.onnx --local-dir .
```
## Usage
```python
from renikud_onnx import G2P
g2p = G2P("model.onnx")
print(g2p.phonemize("היא רצה", speaker=2, target_speaker=2))
```
## Citation
```bibtex
@misc{melichov2026renikud,
title={ReNikud: Audio-Supervised Hebrew Grapheme-to-Phoneme Conversion},
author={Maxim Melichov and Yakov Kolani and Morris Alper},
year={2026},
url={https://arxiv.org/pdf/2606.20179},
}
```
|