Views
No views yet
1024³ directly on modern GPUs.FaultSeg3D under the TorchSeis framework:1import torch
2from torchseis import models as zoo
3
4# 1. Load model
5model = zoo.FaultSeg3d()
6
7# 2. Load pretrained weights
8state = torch.load('faultseg3d-2020-70.pth', weights_only=True)
9model.load_state_dict(state)
10
11# 3. Convert to GPU
12model = model.half().eval().cuda()
13
14# 4. Prepare input volume
15data = torch.from_numpy(f3d[np.newaxis, np.newaxis].copy()).half().cuda()
16
17# 5. Full-volume inference (no tiling)
18with torch.no_grad():
19 pred = model(data, rank=3).cpu().numpy()rank=3means that using strategy 4 in the paper.
| Model | Task | Source |
|---|---|---|
FaultSeg3d | Fault segmentation | Wu, et, al., 2019, Geophysics |
FaultSeg3dPlus | Fault segmentation | Li, et, al., 2024, Geophysics |
FaultSSL | Fault segmentation | Dou, et, al., 2024, Geophysics |
Bi21RGT3d | Relative geological time (RGT) Estimation | Bi, et, al., 2021, JGR-SE |
DeepISMNet | Implicit structural modeling | Bi, et, al., 2022, GMD |
ChannelSeg3d | Channel segmentation | Gao, et, al., 2021, Geophysics |
Wang25Channel | Channel segmentation | Wang, et, al., 2025, ESSD |
KarstSeg3d | Paleokarst detection | Wu, et, al., 2020, JGR-SE |
GEM | Dou, et, al. 2025 | |
SegFormer3D | Perera, et, al., 2025, CVPR |
scripts/infer25ce/ in the repository: torchseisJintaoLee-Roger/torchseis.1@article{li2025infer,
2 title={Memory-Efficient Full-Volume Inference for Large-Scale 3D Dense Prediction without Performance Degradation},
3 author={Li, Jintao and Wu, Xinming},
4 journal={Communications Engineering},
5 year={2025}
6}GEM Model Note: The paper is currently under peer review. We will await the official release of the model weights by the authors before considering distribution. ↩SegFormer3D Model Note: As the code variables were not changed, users are advised to use the original author's weights directly. We are uncertain about the rights to redistribute these weight files. ↩