Update README.md
Browse files
README.md
CHANGED
|
@@ -117,10 +117,10 @@ transform = create_transform(input_size=input_resolution,
|
|
| 117 |
inputs = transform(image).unsqueeze(0).cuda()
|
| 118 |
# model inference
|
| 119 |
out_avg_pool, features = model(inputs)
|
| 120 |
-
print("Size of the averaged pool features:", out_avg_pool.size()) # torch.Size([1,
|
| 121 |
print("Number of stages in extracted features:", len(features)) # 4 stages
|
| 122 |
-
print("Size of extracted features in stage 1:", features[0].size()) # torch.Size([1,
|
| 123 |
-
print("Size of extracted features in stage 4:", features[3].size()) # torch.Size([1,
|
| 124 |
```
|
| 125 |
|
| 126 |
|
|
|
|
| 117 |
inputs = transform(image).unsqueeze(0).cuda()
|
| 118 |
# model inference
|
| 119 |
out_avg_pool, features = model(inputs)
|
| 120 |
+
print("Size of the averaged pool features:", out_avg_pool.size()) # torch.Size([1, 1568])
|
| 121 |
print("Number of stages in extracted features:", len(features)) # 4 stages
|
| 122 |
+
print("Size of extracted features in stage 1:", features[0].size()) # torch.Size([1, 196, 128, 128])
|
| 123 |
+
print("Size of extracted features in stage 4:", features[3].size()) # torch.Size([1, 1568, 16, 16])
|
| 124 |
```
|
| 125 |
|
| 126 |
|