sneakyfree commited on
Commit
99d53fc
·
verified ·
1 Parent(s): adac284

clone from WindyWord/translate-tc-bible-big-itc-fra_ita_por_spa via local upload (ADR-039 Phase C)

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ lora/source.spm filter=lfs diff=lfs merge=lfs -text
37
+ lora/target.spm filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ tags:
4
+ - translation
5
+ - marian
6
+ - windyword
7
+ - italic
8
+ - italian
9
+ - spanish
10
+ - portuguese
11
+ - french
12
+ - catalan
13
+ - romanian
14
+ - french-italian-portuguese-spanish
15
+ language:
16
+ - itc
17
+ - fra
18
+ - ita
19
+ - por
20
+ - spa
21
+ library_name: transformers
22
+ pipeline_tag: translation
23
+ ---
24
+
25
+ # WindyWord.ai Translation — Italic → French/Italian/Portuguese/Spanish
26
+
27
+ **Translates Italic (Italian, Spanish, Portuguese, French, Catalan, Romanian) → French / Italian / Portuguese / Spanish.**
28
+
29
+ **Quality Rating: ⭐⭐½ (2.5★ Basic)**
30
+
31
+ Part of the [WindyWord.ai](https://windyword.ai) translation fleet — 1,800+ proprietary language pairs.
32
+
33
+ ## Quality & Pricing Tier
34
+
35
+ - **5-star rating:** 2.5★ ⭐⭐½
36
+ - **Tier:** Basic
37
+ - **Composite score:** 52.5 / 100
38
+ - **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)
39
+
40
+ ## Available Variants
41
+
42
+ This repository contains multiple deployment formats. Pick the one that matches your use case:
43
+
44
+ | Variant | Description |
45
+ |---|---|
46
+ | `lora/` | **WindyStandard** — our proprietary production baseline. Stable, reliable, optimized for GPU inference. |
47
+ | `lora-ct2-int8/` | **WindyStandard · CPU INT8** — CTranslate2 quantized version of WindyStandard. ~25% of the size, 2–4× faster on CPU, no measurable quality loss. |
48
+
49
+ ### Quick usage
50
+
51
+ **Transformers (PyTorch):**
52
+ ```python
53
+ from transformers import MarianMTModel, MarianTokenizer
54
+ tokenizer = MarianTokenizer.from_pretrained("WindyWord/translate-tc-bible-big-itc-fra_ita_por_spa", subfolder="lora")
55
+ model = MarianMTModel.from_pretrained("WindyWord/translate-tc-bible-big-itc-fra_ita_por_spa", subfolder="lora")
56
+ ```
57
+
58
+ **CTranslate2 (fast CPU inference):**
59
+ ```python
60
+ import ctranslate2
61
+ translator = ctranslate2.Translator("path/to/translate-tc-bible-big-itc-fra_ita_por_spa/lora-ct2-int8")
62
+ ```
63
+
64
+ ## Commercial Use
65
+
66
+ The WindyWord.ai platform provides:
67
+ - **Mobile apps** (iOS, Android — coming soon)
68
+ - **Real-time voice-to-text-to-translation** pipeline
69
+ - **API access** with premium model quality
70
+ - **Offline deployment** support
71
+
72
+ Visit [windyword.ai](https://windyword.ai) for apps and commercial API access.
73
+
74
+ ---
75
+
76
+ ## Provenance & License
77
+
78
+ Weights derived from the OPUS-MT project ([Helsinki-NLP/opus-mt-tc-bible-big-itc-fra_ita_por_spa](https://huggingface.co/Helsinki-NLP/opus-mt-tc-bible-big-itc-fra_ita_por_spa)) under CC-BY-4.0. WindyStandard, WindyEnhanced, and WindyScripture variants are proprietary to WindyWord.ai, independently trained and quality-certified via our Grand Rounds v2 test battery.
79
+
80
+ Licensed CC-BY-4.0 — attribution preserved as required.
81
+
82
+ *Certified by Opus 4.6 Opus-Claw (Dr. C) on Veron-1 (RTX 5090).*
83
+ *Patient file: [clinic record](https://github.com/sneakyfree/Windy-Clinic/blob/main/translation-pairs/tc-bible-big-itc-fra_ita_por_spa.json)*
lora-ct2-int8/config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_source_bos": false,
3
+ "add_source_eos": false,
4
+ "bos_token": "<s>",
5
+ "decoder_start_token": "</s>",
6
+ "eos_token": "</s>",
7
+ "layer_norm_epsilon": null,
8
+ "multi_query_attention": false,
9
+ "unk_token": "<unk>"
10
+ }
lora-ct2-int8/model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fb097d4fcc3e1060a64d450ef4b2dae41978975e53f856bb00a9bd15b973993
3
+ size 222795859
lora-ct2-int8/shared_vocabulary.json ADDED
The diff for this file is too large to render. See raw diff
 
lora/config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Helsinki-NLP/opus-mt-tc-bible-big-itc-fra_ita_por_spa",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "relu",
5
+ "architectures": [
6
+ "MarianMTModel"
7
+ ],
8
+ "attention_dropout": 0.0,
9
+ "bos_token_id": 0,
10
+ "classifier_dropout": 0.0,
11
+ "d_model": 1024,
12
+ "decoder_attention_heads": 16,
13
+ "decoder_ffn_dim": 4096,
14
+ "decoder_layerdrop": 0.0,
15
+ "decoder_layers": 6,
16
+ "decoder_start_token_id": 39824,
17
+ "decoder_vocab_size": 39825,
18
+ "dropout": 0.1,
19
+ "encoder_attention_heads": 16,
20
+ "encoder_ffn_dim": 4096,
21
+ "encoder_layerdrop": 0.0,
22
+ "encoder_layers": 6,
23
+ "eos_token_id": 413,
24
+ "forced_eos_token_id": null,
25
+ "init_std": 0.02,
26
+ "is_encoder_decoder": true,
27
+ "max_length": null,
28
+ "max_position_embeddings": 1024,
29
+ "model_type": "marian",
30
+ "normalize_embedding": false,
31
+ "num_beams": null,
32
+ "num_hidden_layers": 6,
33
+ "pad_token_id": 39824,
34
+ "scale_embedding": true,
35
+ "share_encoder_decoder_embeddings": true,
36
+ "static_position_embeddings": true,
37
+ "torch_dtype": "float32",
38
+ "transformers_version": "4.45.1",
39
+ "use_cache": true,
40
+ "vocab_size": 39825
41
+ }
lora/generation_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bad_words_ids": [
4
+ [
5
+ 39824
6
+ ]
7
+ ],
8
+ "bos_token_id": 0,
9
+ "decoder_start_token_id": 39824,
10
+ "eos_token_id": 413,
11
+ "forced_eos_token_id": 413,
12
+ "max_length": 512,
13
+ "num_beams": 4,
14
+ "pad_token_id": 39824,
15
+ "transformers_version": "4.45.1"
16
+ }
lora/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8c9787133b47133071cce039d402391ca6c62d2f3e1d3a9a23be805fccd1ccb
3
+ size 868741620
lora/source.spm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f055e8f944323e519941a5fc8c5bb486696a3938cd1a37d8422d0d963eabe706
3
+ size 807833
lora/special_tokens_map.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "eos_token": "</s>",
3
+ "pad_token": "<pad>",
4
+ "unk_token": "<unk>"
5
+ }
lora/target.spm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd740dd580958aa78fcb23ee5ad178c96f53bd0c98a9a63efa9b3d8c9790bcd6
3
+ size 817103
lora/tokenizer_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "413": {
4
+ "content": "</s>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "671": {
12
+ "content": "<unk>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "39824": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ }
27
+ },
28
+ "clean_up_tokenization_spaces": false,
29
+ "eos_token": "</s>",
30
+ "model_max_length": 512,
31
+ "pad_token": "<pad>",
32
+ "separate_vocabs": false,
33
+ "source_lang": "itc",
34
+ "sp_model_kwargs": {},
35
+ "target_lang": "fra+ita+por+spa",
36
+ "tokenizer_class": "MarianTokenizer",
37
+ "unk_token": "<unk>"
38
+ }
lora/vocab.json ADDED
The diff for this file is too large to render. See raw diff