Update README.md
Browse files
README.md
CHANGED
|
@@ -63,7 +63,7 @@ Then to forward an image:
|
|
| 63 |
|
| 64 |
|
| 65 |
```python
|
| 66 |
-
img = np.random.rand(
|
| 67 |
model_input = processor(img)
|
| 68 |
features = model(**model_input)
|
| 69 |
```
|
|
|
|
| 63 |
|
| 64 |
|
| 65 |
```python
|
| 66 |
+
img = 2048 * np.random.rand(256, 256) - 1024 # single axial slice, in PL orientation
|
| 67 |
model_input = processor(img)
|
| 68 |
features = model(**model_input)
|
| 69 |
```
|