Safetensors
dinov2
medical
asaporta-raidium commited on
Commit
c73710d
·
verified ·
1 Parent(s): cd3fc3a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -63,7 +63,7 @@ Then to forward an image:
63
 
64
 
65
  ```python
66
- img = np.random.rand(-1024, 1024, size=(256, 256)) # single axial slice, in PL orientation
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
  ```