All Projects → j-duan → Vs Net

j-duan / Vs Net

Variable splitting network for accelerated parallel MRI reconstruction

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Vs Net

Cppnumericalsolvers
a lightweight C++17 library of numerical optimization methods for nonlinear functions (Including L-BFGS-B for TensorFlow)
Stars: ✭ 638 (+2800%)
Mutual labels:  optimization
Opticss
A CSS Optimizer
Stars: ✭ 716 (+3154.55%)
Mutual labels:  optimization
React Ssr Optimization
React.js server-side rendering optimization with component memoization and templatization
Stars: ✭ 806 (+3563.64%)
Mutual labels:  optimization
Optim.jl
Optimization functions for Julia
Stars: ✭ 679 (+2986.36%)
Mutual labels:  optimization
Casadi
CasADi is a symbolic framework for numeric optimization implementing automatic differentiation in forward and reverse modes on sparse matrix-valued computational graphs. It supports self-contained C-code generation and interfaces state-of-the-art codes such as SUNDIALS, IPOPT etc. It can be used from C++, Python or Matlab/Octave.
Stars: ✭ 714 (+3145.45%)
Mutual labels:  optimization
Nuxt Optimized Images
🌅🚀 Automatically optimizes images used in Nuxt.js projects (JPEG, PNG, SVG, WebP and GIF).
Stars: ✭ 717 (+3159.09%)
Mutual labels:  optimization
Better Monadic For
Desugaring scala `for` without implicit `withFilter`s
Stars: ✭ 622 (+2727.27%)
Mutual labels:  optimization
Wheels
Performance-optimized wheels for TensorFlow (SSE, AVX, FMA, XLA, MPI)
Stars: ✭ 891 (+3950%)
Mutual labels:  optimization
Closure Compiler
A JavaScript checker and optimizer.
Stars: ✭ 6,277 (+28431.82%)
Mutual labels:  optimization
Pennylane
PennyLane is a cross-platform Python library for differentiable programming of quantum computers. Train a quantum computer the same way as a neural network.
Stars: ✭ 800 (+3536.36%)
Mutual labels:  optimization
Tiramisu
A polyhedral compiler for expressing fast and portable data parallel algorithms
Stars: ✭ 685 (+3013.64%)
Mutual labels:  optimization
Gradient Free Optimizers
Simple and reliable optimization with local, global, population-based and sequential techniques in numerical discrete search spaces.
Stars: ✭ 711 (+3131.82%)
Mutual labels:  optimization
Su2
SU2: An Open-Source Suite for Multiphysics Simulation and Design
Stars: ✭ 731 (+3222.73%)
Mutual labels:  optimization
Hyperparameter hunter
Easy hyperparameter optimization and automatic result saving across machine learning algorithms and libraries
Stars: ✭ 648 (+2845.45%)
Mutual labels:  optimization
D912pxy
DirectX9 to DirectX12 API proxy for Guild Wars 2
Stars: ✭ 833 (+3686.36%)
Mutual labels:  optimization
Pydis
A redis clone in Python 3 to disprove some falsehoods about performance.
Stars: ✭ 623 (+2731.82%)
Mutual labels:  optimization
Eaopt
🍀 Evolutionary optimization library for Go (genetic algorithm, partical swarm optimization, differential evolution)
Stars: ✭ 718 (+3163.64%)
Mutual labels:  optimization
Shift Scheduling
Shift Scheduling for workforce
Stars: ✭ 22 (+0%)
Mutual labels:  optimization
Liblaml
A stand-alone pure C++ library for linear algebra and machine learning
Stars: ✭ 7 (-68.18%)
Mutual labels:  optimization
Pyswarms
A research toolkit for particle swarm optimization in Python
Stars: ✭ 742 (+3272.73%)
Mutual labels:  optimization

VS-Net: Variable splitting network for accelerated parallel MRI reconstruction

The code in this repository implements VS-Net (Fig.1), a model-driven neural network for accelerated parallel MRI reconstruction (see our presentation slides and poster). Specifically, we formulate the generalized parallel compressed sensing reconstruction as an energy minimization problem, for which a variable splitting optimization method is derived. Based on this formulation we propose a novel, end-to-end trainable deep neural network architecture by unrolling the resulting iterative process of such variable splitting scheme. We evaluated VS-Net on complex valued multi-coil knee images for 4-fold and 6-fold acceleration factors showed improved performance (Fig.2).

Fig.1: VS-Net overall architecture (left) and each block in VS-net (right). DB, DCB and WAB stand for Denoiser Block, Data Consistency Block and Weighted Average Block, respectively.
Fig.2: Visual comparison using Cartesian undersampling with AF 4 (top) and 6 (bottom). From left to right: zero-filling, l1-SPIRiT, Variational Network, VS-Net and ground truth. Click here for more visual comparison.

Overview

The files in this repository are organized into 5 directories and 1 root directory:

  • root : contains base functions for training, validation, inference and visualization:
    • network architecture, as shown in Fig.1 - architecture.py
    • data loader to read complex-valued raw MRI data and sensitivity maps - data_loader.py
    • inference to deploy a trained model on unseen raw data - inference.py
    • save png images for visualization after inference - save_png.py
    • train and validate the VS-Net - vs_net.py
  • common : contains dependant functions used in training or deploying VS-Net and is written by fastMRI with some of our modificatins
  • data : contains dependant functions used in training or deploying VS-Net and is written by fastMRI
  • log : produces csv files where the quantitative metrics (PSNR, SSIM and NMSE) over each iteration are saved
  • model : saves trained models. There are 4 pre-trained models that can be used directly to see VS-Net performance.
  • results : save final results. After inference is run, this folder will produce 3 mat files, i.e. vs-200.mat, zero_filling.mat and reference.mat. On top of the three mat files, running save_png.py will produce png files.

Run VS-Net

To start the training process with vs_net.py, please follow the following four steps:

1. Download the knee data

Download the data we used for our experiments at GLOBUS.

2. Install python libraries

pip install visdom torch==1.2.1 matplotlib h5py scipy scikit-image

3. Start visdom

python -m visdom.server

4. Run vs_net.py

you need to change the path in this python script to where you save the knee data downloaded above. For visualization during training, open your browser and enter http://localhost:8097

Citation

If you find this software useful for your project or research. Please give some credits to authors who developed it by citing the following paper. We really appreciate that. If you encounter any problem during installation, please feel free to contact me via [email protected]

[1] Duan J, Schlemper J, Qin C, Ouyang C, Bai W, Biffi C, Bello G, Statton B, O'Regan DP, Rueckert D. VS-Net: Variable splitting network for accelerated parallel MRI reconstruction. arXiv preprint arXiv:1907.10033. MICCAI (2019).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].