File size: 595 Bytes
8986ff6 |
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 26 |
"""
Tariff Impact Propagation Model (TIPM)
=====================================
A comprehensive AI system for predicting how tariffs impact global markets,
supply chains, and populations through a multi-layered machine learning architecture.
"""
__version__ = "0.1.0"
__author__ = "TIPM Development Team"
__email__ = "[email protected]"
from .core import TIPMModel
from .layers import *
from .utils import *
__all__ = [
"TIPMModel",
"PolicyTriggerLayer",
"TradeFlowLayer",
"IndustryResponseLayer",
"FirmImpactLayer",
"ConsumerImpactLayer",
"GeopoliticalLayer",
]
|