File size: 663 Bytes
f4fd6c3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | """
StruCTA: Structured Causal Transformer with Abstraction
A privacy-preserving transformer architecture operating on structured representations.
"""
__version__ = "0.1.0"
from .config import StruCTAConfig
from .encoder import PrivacyGraphTransformer
from .decoder import StructuredReasoningDecoder
from .privacy import PrivacyVerificationModule
from .abstraction import AbstractionLayer
from .deabstraction import DeAbstractionLayer
from .model import StruCTA
__all__ = [
"StruCTA",
"StruCTAConfig",
"PrivacyGraphTransformer",
"StructuredReasoningDecoder",
"PrivacyVerificationModule",
"AbstractionLayer",
"DeAbstractionLayer",
]
|