shivi commited on
Commit
99d693d
1 Parent(s): 8de5656

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -53,8 +53,8 @@ video_input = torch.cat(video_frames)
53
  with torch.no_grad():
54
  outputs = model(**video_input)
55
 
56
- # model predicts class_queries_logits of shape `(batch_size, num_queries)`
57
- # and masks_queries_logits of shape `(batch_size, num_queries, height, width)`
58
  class_queries_logits = outputs.class_queries_logits
59
  masks_queries_logits = outputs.masks_queries_logits
60
 
 
53
  with torch.no_grad():
54
  outputs = model(**video_input)
55
 
56
+ # model predicts class_queries_logits of shape `(batch_size, num_queries, num_classes)`
57
+ # and masks_queries_logits of shape `(num_queries, batch_size, height, width)`
58
  class_queries_logits = outputs.class_queries_logits
59
  masks_queries_logits = outputs.masks_queries_logits
60