sneakyfree commited on
Commit
3f52524
·
verified ·
1 Parent(s): 4d4b725

Add model card

Browse files
Files changed (1) hide show
  1. README.md +76 -0
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
+ - multilingual
10
+ library_name: transformers
11
+ pipeline_tag: translation
12
+ ---
13
+
14
+ # WindyWord.ai Translation — ROMANCE → en
15
+
16
+ **Quality Rating: ⭐⭐½ (2.5★ Basic)**
17
+
18
+ Part of the [WindyWord.ai](https://windyword.ai) translation fleet — 1,800+ proprietary language pairs.
19
+
20
+ ## Quality & Pricing Tier
21
+
22
+ - **5-star rating:** 2.5★ ⭐⭐½
23
+ - **Tier:** Basic
24
+ - **Composite score:** 51.8 / 100
25
+ - **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)
26
+
27
+ ## Available Variants
28
+
29
+ This repository contains multiple deployment formats. Pick the one that matches your use case:
30
+
31
+ | Variant | Description |
32
+ |---|---|
33
+ | `lora/` | Proprietary fog-of-mirror fork. Safe baseline, quality ≈ Helsinki-NLP original. |
34
+ | `lora-ct2-int8/` | CT2 INT8 quantized lora. ~25% of size, 2-4× faster CPU inference, no quality loss. |
35
+
36
+ ### Quick usage
37
+
38
+ **Transformers (PyTorch):**
39
+ ```python
40
+ from transformers import MarianMTModel, MarianTokenizer
41
+ tokenizer = MarianTokenizer.from_pretrained("WindyWord/translate-ROMANCE-en", subfolder="lora")
42
+ model = MarianMTModel.from_pretrained("WindyWord/translate-ROMANCE-en", subfolder="lora")
43
+ ```
44
+
45
+ **CTranslate2 (fast CPU inference):**
46
+ ```python
47
+ import ctranslate2
48
+ translator = ctranslate2.Translator("path/to/translate-ROMANCE-en/lora-ct2-int8")
49
+ ```
50
+
51
+ ## Attribution
52
+
53
+ Derived from [Helsinki-NLP/opus-mt-ROMANCE-en](https://huggingface.co/Helsinki-NLP/opus-mt-ROMANCE-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/ROMANCE-en.json)*