File size: 2,151 Bytes
073fc7a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# KIKI-net-OASIS
---
tags:
- TensorFlow
- MRI reconstruction
- MRI
datasets:
- OASIS
---

This model can be used to reconstruct single coil OASIS data with an acceleration factor of 4.

## Model description
For more details, see https://www.mdpi.com/2076-3417/10/5/1816.
This section is WIP.

## Intended uses and limitations
This model can be used to reconstruct single coil brain retrospective data from the OASIS database at acceleration factor 4.
It cannot be used on multi-coil data.

## How to use
This model can be loaded using the following repo: https://github.com/zaccharieramzi/fastmri-reproducible-benchmark.
After cloning the repo, `git clone https://github.com/zaccharieramzi/fastmri-reproducible-benchmark`, you can install the package via `pip install fastmri-reproducible-benchmark`.
The framework is TensorFlow.

You can initialize and load the model weights as follows:
```python
from fastmri_recon.models.functional_models.kiki_sep import full_kiki_net
from fastmri_recon.models.utils.non_linearities import lrelu


model = full_kiki_net(n_convs=16, n_filters=48, activation=lrelu)
model.load_weights('model_weights.h5')

```

Using the model is then as simple as:
```python
model([
    kspace,  # shape: [n_slices, n_rows, n_cols, 1]
    mask,  # shape: [n_slices, n_rows, n_cols]
])
```

## Limitations and bias
The limitations and bias of this model have not been properly investigated.

## Training data
This model was trained using the [OASIS dataset](https://www.oasis-brains.org/).

## Training procedure
The training procedure is described in https://www.mdpi.com/2076-3417/10/5/1816 for brain data.
This section is WIP.

## Evaluation results
This model was evaluated using the [OASIS dataset](https://www.oasis-brains.org/).

- PSNR: 30.08
- SSIM: 0.853


## Bibtex entry
```
@article{ramzi2020benchmarking,
  title={Benchmarking MRI reconstruction neural networks on large public datasets},
  author={Ramzi, Zaccharie and Ciuciu, Philippe and Starck, Jean-Luc},
  journal={Applied Sciences},
  volume={10},
  number={5},
  pages={1816},
  year={2020},
  publisher={Multidisciplinary Digital Publishing Institute}
}
```