corrected mode loading
Browse files
README.md
CHANGED
|
@@ -49,7 +49,7 @@ inputs = [
|
|
| 49 |
tf.zeros(kspace_size, dtype=tf.complex64), # smaps
|
| 50 |
]
|
| 51 |
model(inputs)
|
| 52 |
-
model.load_weights('
|
| 53 |
```
|
| 54 |
|
| 55 |
Using the model is then as simple as:
|
|
|
|
| 49 |
tf.zeros(kspace_size, dtype=tf.complex64), # smaps
|
| 50 |
]
|
| 51 |
model(inputs)
|
| 52 |
+
model.load_weights('model_weights.h5')
|
| 53 |
```
|
| 54 |
|
| 55 |
Using the model is then as simple as:
|