Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
tags:
|
| 4 |
+
- translation
|
| 5 |
+
- marian
|
| 6 |
+
- opus-mt
|
| 7 |
+
- windyword
|
| 8 |
+
language:
|
| 9 |
+
- aav
|
| 10 |
+
- en
|
| 11 |
+
library_name: transformers
|
| 12 |
+
pipeline_tag: translation
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# WindyWord.ai Translation — aav → en
|
| 16 |
+
|
| 17 |
+
**Quality Rating: ⭐⭐⭐⭐ (4.0★ Standard)**
|
| 18 |
+
|
| 19 |
+
Part of the [WindyWord.ai](https://windyword.ai) translation fleet — 1,800+ proprietary language pairs.
|
| 20 |
+
|
| 21 |
+
## Quality & Pricing Tier
|
| 22 |
+
|
| 23 |
+
- **5-star rating:** 4.0★ ⭐⭐⭐⭐
|
| 24 |
+
- **Tier:** Standard
|
| 25 |
+
- **Composite score:** 67.8 / 100
|
| 26 |
+
- **Rated via:** Grand Rounds v2 — an 8-test stress battery (paragraphs, multi-paragraph, native input, domain stress, edge cases, round-trip fidelity, speed, and consistency checks)
|
| 27 |
+
|
| 28 |
+
## Available Variants
|
| 29 |
+
|
| 30 |
+
This repository contains multiple deployment formats. Pick the one that matches your use case:
|
| 31 |
+
|
| 32 |
+
| Variant | Description |
|
| 33 |
+
|---|---|
|
| 34 |
+
| `lora/` | Proprietary fog-of-mirror fork. Safe baseline, quality ≈ Helsinki-NLP original. |
|
| 35 |
+
|
| 36 |
+
### Quick usage
|
| 37 |
+
|
| 38 |
+
**Transformers (PyTorch):**
|
| 39 |
+
```python
|
| 40 |
+
from transformers import MarianMTModel, MarianTokenizer
|
| 41 |
+
tokenizer = MarianTokenizer.from_pretrained("WindyWord/translate-aav-en", subfolder="lora")
|
| 42 |
+
model = MarianMTModel.from_pretrained("WindyWord/translate-aav-en", subfolder="lora")
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
**CTranslate2 (fast CPU inference):**
|
| 46 |
+
```python
|
| 47 |
+
import ctranslate2
|
| 48 |
+
translator = ctranslate2.Translator("path/to/translate-aav-en/lora-ct2-int8")
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
## Attribution
|
| 52 |
+
|
| 53 |
+
Derived from [Helsinki-NLP/opus-mt-aav-en](https://huggingface.co/Helsinki-NLP/opus-mt-aav-en) (Helsinki-NLP OPUS-MT project, CC-BY-4.0).
|
| 54 |
+
|
| 55 |
+
Proprietary variants created by the WindyWord.ai team:
|
| 56 |
+
- **lora/**: Fog-of-mirror LoRA fine-tune (r=4, α=8) — legally distinct, quality-preserved
|
| 57 |
+
- **herm0/**: OPUS-100/Tatoeba/WikiMatrix deep fine-tune (if available) — measurably improved
|
| 58 |
+
- **herm0-scripture/**: eBible verse-aligned fine-tune (for 292 scripture pairs)
|
| 59 |
+
|
| 60 |
+
## Commercial Use
|
| 61 |
+
|
| 62 |
+
The WindyWord.ai platform provides:
|
| 63 |
+
- **Mobile apps** (iOS, Android — coming soon)
|
| 64 |
+
- **Real-time voice-to-text-to-translation** pipeline
|
| 65 |
+
- **API access** with premium model quality
|
| 66 |
+
- **Offline deployment** support
|
| 67 |
+
|
| 68 |
+
Visit [windyword.ai](https://windyword.ai) for apps and commercial API access.
|
| 69 |
+
|
| 70 |
+
## License
|
| 71 |
+
|
| 72 |
+
CC-BY-4.0, inherited from upstream Helsinki-NLP. Attribution required.
|
| 73 |
+
|
| 74 |
+
---
|
| 75 |
+
*Certified by Opus 4.6 Opus-Claw (Dr. C) via WindyWord.ai quality assurance pipeline.*
|
| 76 |
+
*Patient file: [clinic record](https://github.com/sneakyfree/Windy-Clinic/blob/main/translation-pairs/aav-en.json)*
|