StruCTA / structa /__init__.py
YOUSSEF88's picture
Upload structa/__init__.py
f4fd6c3 verified
"""
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",
]