Spaces:
Sleeping
Sleeping
| # Models package for Context-CrackNet | |
| """ | |
| This package contains all model architectures including: | |
| - Context-CrackNet (proposed model) | |
| - Context-CrackNet ablation variant | |
| - Baseline models (UNet, DeepLabV3+, etc.) | |
| """ | |
| from src.models.context_cracknet import Context_CrackNet, Context_CrackNet_ablation | |
| from src.models.baselines import create_model | |
| from src.models.components import ( | |
| ConvBlock, | |
| ResNet50Encoder, | |
| AttentionGate, | |
| LinformerSelfAttention, | |
| LinformerBlock, | |
| ) | |
| __all__ = [ | |
| "Context_CrackNet", | |
| "Context_CrackNet_ablation", | |
| "create_model", | |
| "ConvBlock", | |
| "ResNet50Encoder", | |
| "AttentionGate", | |
| "LinformerSelfAttention", | |
| "LinformerBlock", | |
| ] | |