Skip to content

Commit

Permalink
Edit a comment
Browse files Browse the repository at this point in the history
Input data shape is [batch,3,300,300] and not [batch,3*batch,300,300].
This small mistake makes some confusion.
  • Loading branch information
ASoleimaniB authored Nov 15, 2017
1 parent 197f922 commit 3499bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssd.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def forward(self, x):
"""Applies network layers and ops on input image(s) x.
Args:
x: input image or batch of images. Shape: [batch,3*batch,300,300].
x: input image or batch of images. Shape: [batch,3,300,300].
Return:
Depending on phase:
Expand Down

0 comments on commit 3499bbd

Please sign in to comment.