You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(english-gonol): add relational density scales, determinable not stored
- Add on-demand streaming scales through the constructed relations:
word_to_words_in_definitions (origin word -> target word counts in its
definitions) and characters_in_word_to_characters_in_definitions (origin
word -> character counts in its definitions via word expansion plus
whitespace scalars)
- Relational scales are determinable at any time and recorded with
stored=false; never materialized into the density table
- relational_receipt streams one scale and returns a compact row count plus
sha256 digest without storing rows
- Semantic valuation now lists all six scales as determinable
- Full-corpus on-demand receipts (not stored):
word_to_words_in_definitions: 1,611,237 rows, sha 0e17c96945494e03
characters_in_word_to_characters_in_definitions: 2,509,227 rows,
sha 1a7543f5bae9dce0
- Regenerated stored evidence (v2.1.0), receipt
6f54b5fc379a2ae7188603accf5d0ff9ae78e90452bcc5438a3815c80cdeb1a5
Copy file name to clipboardExpand all lines: research/english-gonol/english_gonol/density_run.py
+168-4Lines changed: 168 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
# module_kind: measurement
5
5
# summary: exact per-scalar occurrence counts through every constructed occurrence relation of the verified v2 construct, recorded as semantic-valuation inputs at every scale
6
6
# owner: Erin Spencer
7
-
# public_surface: SCHEMA, VERSION, DensityError, DensityResult, build_density, run
# auth_boundary: measures the already-constructed English Gonol v2 database; does not retokenize, normalize, or re-admit corpus text; supplies no geometry
10
10
# storage_boundary: one caller-selected out directory with density.json and density.md
- density receipt: ba0abf4a3043a6487d49042d0504432e3d4ba10788a67dad90e845f46c022f6a
14
+
- density receipt: 6f54b5fc379a2ae7188603accf5d0ff9ae78e90452bcc5438a3815c80cdeb1a5
15
15
16
16
## Semantic valuation
17
17
18
18
- counts: exact per-scalar occurrence counts through the constructed occurrence relations at every scale
19
-
- determinable at scales: character, word, definition, semantic
19
+
- determinable at scales: character, word, definition, semantic, word_to_words_in_definitions, characters_in_word_to_characters_in_definitions
20
20
- valuation weight: None
21
21
22
22
## Scale totals
@@ -28,6 +28,13 @@ semantic-valuation inputs, determinable at any and every scale.
28
28
| definition | 11085231 |
29
29
| semantic | 7924690 |
30
30
31
+
## Relational scales (determinable, not stored)
32
+
33
+
- word_to_words_in_definitions: for each origin word, exact counts of word identities appearing in its definitions through definition_components word references
34
+
stored: False, determinable: True
35
+
- characters_in_word_to_characters_in_definitions: for each origin word, exact counts of character identities appearing in its definitions through definition_components (word references expanded through word_characters plus whitespace character references)
36
+
stored: False, determinable: True
37
+
31
38
## Character scale counts
32
39
33
40
Relation: characters identity: each admitted scalar exists once
0 commit comments