ahatamiz commited on
Commit
14548bd
·
verified ·
1 Parent(s): 66ca448

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
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, 640])
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, 80, 56, 56])
123
- print("Size of extracted features in stage 4:", features[3].size()) # torch.Size([1, 640, 7, 7])
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