A larger 3D CNN variant trained on temporal dual-polarimetric NEXRAD radar sequences. This is the
64M parameter version -- see
resnet3d-18-tornet for the smaller, equally performant 33M version.
Same dual-head architecture as ResNet3D-18 but with deeper residual blocks (layers=[3,4,6,3]).
Same as ResNet3D-18 -- see
resnet3d-18-tornet for full usage instructions and deployment guidance.
1from model_resnet3d import DualHeadResNet3D
2model = DualHeadResNet3D(in_channels=24, arch="resnet34")
3state = torch.load("best.pt", map_location="cpu")
4model.load_state_dict(state["model_state_dict"])
1@model{resnet3d-34-tornet,
2 title={ResNet3D-34 for Temporal Radar Tornado Detection},
3 author={DeepGuess},
4 year={2026},
5 url={https://huggingface.co/deepguess/resnet3d-34-tornet},
6}