@mailwoman/neural-weights-ja-jp 9.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # @mailwoman/neural-weights-ja-jp
2
+
3
+ ja-JP weights overlay for [mailwoman](https://mailwoman.ai).
4
+
5
+ **Data-only.** Declares `mailwoman.baseWeights` and shares the base model and tokenizer with
6
+ `@mailwoman/neural-weights-en-us`; what it adds is `fst-ja-jp.bin`.
7
+
8
+ ```sh
9
+ npm install @mailwoman/neural-weights-ja-jp
10
+ ```
package/fst-ja-jp.bin ADDED
Binary file
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@mailwoman/neural-weights-ja-jp",
3
+ "version": "7.0.0",
4
+ "locale": "ja-JP",
5
+ "license": "AGPL-3.0",
6
+ "$comment": "Data-only overlay. Shares model.onnx + char-vocab.json with cjk via mailwoman.baseWeights. Deliberately carries NO `labels`: the vocabulary belongs to the shared MODEL, so it is inherited from the base card at resolve time. Copying it here creates a second copy to go stale on the next retrain, and an overlay whose labels disagree with its model throws on the first parse.",
7
+ "files": {
8
+ "model_card": "model-card.json"
9
+ }
10
+ }
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@mailwoman/neural-weights-ja-jp",
3
+ "version": "9.3.0",
4
+ "description": "ja-JP weights overlay for mailwoman — data-only; shares the base model with @mailwoman/neural-weights-cjk.",
5
+ "license": "AGPL-3.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/sister-software/mailwoman.git",
9
+ "directory": "packages/neural-weights-ja-jp"
10
+ },
11
+ "files": [
12
+ "model-card.json",
13
+ "fst-ja-jp.bin",
14
+ "README.md",
15
+ "*.ts",
16
+ "**/*.ts",
17
+ "!*.test.ts",
18
+ "!**/*.test.ts",
19
+ "!scripts/**"
20
+ ],
21
+ "type": "module",
22
+ "dependencies": {
23
+ "@mailwoman/neural-weights-cjk": "9.3.0"
24
+ },
25
+ "devDependencies": {
26
+ "@mailwoman/resolver-wof-sqlite": "9.3.0"
27
+ },
28
+ "mailwoman": {
29
+ "baseWeights": "@mailwoman/neural-weights-cjk"
30
+ }
31
+ }