Add language pack schema foundation
This commit is contained in:
parent
0431bdf655
commit
48947db9d4
1 changed files with 29 additions and 0 deletions
29
language_packs/__init__.py
Normal file
29
language_packs/__init__.py
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
"""
|
||||||
|
language_packs — compiled linguistic manifold schemas.
|
||||||
|
|
||||||
|
Language packs are not datasets. They are pinned, checksummed, compiled
|
||||||
|
linguistic manifolds: surface forms, morphology, grammar attractors,
|
||||||
|
cross-language resonances, and holonomy resonance proofs.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from .schema import (
|
||||||
|
AlignmentEdge,
|
||||||
|
GrammarAttractor,
|
||||||
|
HolonomyAlignmentCase,
|
||||||
|
LanguagePackManifest,
|
||||||
|
LanguageRole,
|
||||||
|
LexicalEntry,
|
||||||
|
MorphologyEntry,
|
||||||
|
OOVPolicy,
|
||||||
|
)
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"AlignmentEdge",
|
||||||
|
"GrammarAttractor",
|
||||||
|
"HolonomyAlignmentCase",
|
||||||
|
"LanguagePackManifest",
|
||||||
|
"LanguageRole",
|
||||||
|
"LexicalEntry",
|
||||||
|
"MorphologyEntry",
|
||||||
|
"OOVPolicy",
|
||||||
|
]
|
||||||
Loading…
Reference in a new issue