Zhiwei Xiong, Haoyuan Shi, Yinda Chen, Jinpeng Lu, Linghan Cai, Guo Tang, Songhan Jiang
We lifted 26 functions out of this paper's own repositories and ran 16 of them in a sandbox. "Ran" means the function executed on a synthesized input and returned a value. It is not a reproduction of the paper's results.
| Repository | Role | Ran |
|---|---|---|
| JinPLu/VeloxSeg | — | 16 of 26 |
| Function | Status | Where it lives |
|---|---|---|
| DownConv | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("7771f22568503062") |
| FFN | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("ee46c691cbc4e1c9") |
| InitWeights_He | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("e012167798fcb7a0") |
| JLC | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("641fb9eb02841f0f") |
| JLCLayer | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("b9114914da1f5073") |
| LayerNorm | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("6daae90c3f732709") |
| Paired_Windows_Attention | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("ba8de047ec6a1e84") |
| PatchMerging | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("d2d79060f425c5b1") |
| PixelShuffle | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("3b42c502a435ced1") |
| PositionalEmbedding | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("29a794d4f9736b5e") |
| UpConv | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("80cb9d93fe2a3e85") |
| get_act | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("6d8a3bf4555f1cef") |
| get_conv | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("35d5f0737cb91bcf") |
| get_norm | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("23dabbf314a5a727") |
| get_pram_matrix | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("a52b3ff0b97a0625") |
| get_traspose_conv | Ran | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("2be2603de736a9e5") |
| Conv_Encoder | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("00f17a2511f6726a") |
| Encoder | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("4297b12bb24581a7") |
| MultiModal_Paired_Windows_Attention | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("ca16d82648ed2d07") |
| Paired_Windows_TransformerBlock | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("868e444a73b6f08b") |
| RC_Decoder | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("606fd20a5c925f26") |
| Seg_Decoder | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("99de2589595127f3") |
| Transformer_BasicLayer | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("c0a19a6662786a19") |
| Transformer_Encoder | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("163c281e4af40b55") |
| VeloxSeg | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("a69f4ad9343c20fa") |
| concat | Not yet run | JinPLu/VeloxSeg/model/VeloxSeg.py pointer only (licence: NONE) · get_code("4ea4b62981b4a22c") |
Some links come from the archived Papers with Code dataset (CC BY-SA 4.0): attribution and licence.
Lightweight 3D medical image segmentation remains constrained by a fundamental "efficiency / robustness conflict", particularly when processing complex anatomical structures and heterogeneous modalities. In this paper, we study how to redesign the framework based on the characteristics of high-dimensional 3D images, and explore data synergy to overcome the fragile representation of lightweight methods. Our approach, VeloxSeg, begins with a deployable and extensible dual-stream CNN-Transformer architecture composed of Paired Window Attention (PWA) and Johnson-Lindenstrauss lemma-guided convolution (JLC). For each 3D image, we invoke a "glance-and-focus" principle, where PWA rapidly retrieves multi-scale information, and JLC ensures robust local feature extraction with minimal parameters, significantly enhancing the model's ability to operate with low computational budget. Followed by an extension of the dual-stream architecture that incorporates modal interaction into the multi-scale image-retrieval process, VeloxSeg efficiently models heterogeneous modalities. Finally, Spatially Decoupled Knowledge Transfer (SDKT) via Gram matrices injects the texture prior extracted by a self-supervised network into the segmentation network, yielding stronger representations than baselines at no extra inference cost. Experimental results on multimodal benchmarks show that VeloxSeg achieves a 26% Dice improvement, alongside increasing GPU throughput by 11×, CPU by 48×, and reducing training peak GPU memory usage by 1/20, inference by 1/24. Code is available at https://github.com/JinPLu/VeloxSeg.
The same record, over MCP at https://syntology.ai/mcp:
get_harvested_code_for_paper("2509.22307")
get_code_for_paper("2509.22307")
have("2509.22307")
Connect an agent — have() is free.