██████╗ ██████╗ ██████╗ ██╗███████╗ ██████╗████████╗ ██████╗
██╔══██╗██╔══██╗██╔═══██╗ ██║██╔════╝██╔════╝╚══██╔══╝██╔════╝
██████╔╝██████╔╝██║ ██║ ██║█████╗ ██║ ██║ ╚█████╗
██╔═══╝ ██╔══██╗██║ ██║██╗ ██║██╔══╝ ██║ ██║ ╚═══██╗
██║ ██║ ██║╚██████╔╝╚██████╔╝███████╗╚██████╗ ██║ ██████╔╝
╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═════╝
Research and open source projects
Research Projects
研究项目
Untrained Fixed Point Network
无训练不动点网络
- Oriented towards Untrained framework: Representative approach is Deep Image Prior, where the network doesn't require pre-training. Instead, it only trains on a single test sample during inference, and the network output becomes the test result after training.
- First to combine fixed point theory with Untrained framework, with mathematical proof of convergence
- Incorporated prior information to design a physics-driven network architecture within the proposed framework
- Related work submitted to IEEE TIP (Q1 TOP, IF: 13.7), Major Revision
Hypergraph-Inspired Linear Attention + Decoder-only Image Reconstruction Network
超图启发的线性注意力 + Decoder-only图像重建网络
- For MRI video reconstruction, data dimensions are large. Self-attention's quadratic complexity makes it difficult to directly apply in MRI video reconstruction frameworks (typically cascading dozens of networks)
- Combined self-attention with graph theory, using hypergraph to restructure self-attention mechanism, transforming it into "aggregate features to hyperedges, then distribute features to nodes" operation, achieving linear complexity
- For image restoration, current approaches directly apply U-Net from image segmentation
- Designed a Decoder-only network without U-Net's downsample-upsample approach, directly restoring from low to high resolution progressively, which is intuitive and suitable for image restoration tasks
- Related work submitted to Medical Image Analysis (Q1 TOP)
Tensor Low-Rank and Sparse Constrained Deep Unfolding Network
张量低秩稀疏约束深度展开网络
- For MRI video reconstruction, data is 3D (2D+T). Existing models mainly use matrices to describe redundant information within videos, which is insufficient
- From tensor perspective, based on tensor t-SVD decomposition, mathematically derived and proved a new unitary transform-based t-SVD decomposition method, designing a tensor low-rank prior
- Combined tensor low-rank and sparse priors, derived iterative optimization algorithm, implemented with deep learning to build deep unfolding network, where low-rank and sparse transform domains are adaptively learned using CNN
- Related work published in CIBM (Q2 TOP at submission)
Differentiable SVD Algorithm Research
可微分SVD算法研究
- In 2024, in PyTorch, if forward propagation contains SVD, training becomes extremely unstable
- The reason is: SVD derivative doesn't exist when there are two identical singular values
- Deeply studied SVD and its derivative derivation, combined with matrix generalized inverse, defined a differentiable SVD, and implemented its forward and backward propagation in PyTorch, defining a new SVD operator
Open Source Projects
开源项目
CMRxRecon2025 Challenge - 8th Place
CMRxRecon2025挑战赛 - 第8名
Team: Hit.imip
- CMRxRecon2025 is a MICCAI 2025 challenge focused on cardiac MRI reconstruction, aiming to build foundation models for multi-center, multi-vendor, and multiple disease scenarios
- Challenge involved 5+ centers, 10+ scanners, and various cardiovascular diseases including hypertrophic cardiomyopathy and myocardial infarction
- Our team achieved 8th place by fusing PromptMR+ with Swin Transformer architecture
- Trained with only 2 NVIDIA A6000 GPUs, potential for better results with more computational resources (for example, 8 GPUs)
WPS2Latex (Vibe Coding project, powered by GitHub Copilot and Hermes Agent)
WPS2Latex (Vibe Coding项目,由GitHub Copilot和Hermes Agent驱动)
- A WPS JS macro tool similar to Excel2LaTeX, enabling one-click export of selected spreadsheet tables to LaTeX tabular code
- Supports bold/italic text, column alignment (l/c/r), multirow, multicolumn, and booktabs rules
- Provides .xlam macro file that can be loaded directly into WPS Office
- MIT License, tested on WPS Office 2026 (Linux)