Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -34,6 +34,7 @@ train_transforms = T.Compose([T.Resize((384, 384)),
|
|
34 |
T.Normalize([0.5, 0.5, 0.5], [0.5, 0.5, 0.5])])
|
35 |
img = Image.open(PATH_TO_YOUR_IMAGE)
|
36 |
output = model(train_transforms(img).unsqueeze(0))
|
|
|
37 |
```
|
38 |
|
39 |
## Citation
|
|
|
34 |
T.Normalize([0.5, 0.5, 0.5], [0.5, 0.5, 0.5])])
|
35 |
img = Image.open(PATH_TO_YOUR_IMAGE)
|
36 |
output = model(train_transforms(img).unsqueeze(0))
|
37 |
+
# output is a (1, num_features) shaped tensor
|
38 |
```
|
39 |
|
40 |
## Citation
|