Skip to content

Commit

Permalink
Fix typos in inspect_data notebook(feature meap -> feature map)
Browse files Browse the repository at this point in the history
Replace 256*256*3 with 256x256x3, since the '*' won't be displayed in
Markdown
  • Loading branch information
Zhen Ju authored and waleedka committed Mar 4, 2019
1 parent 4f440de commit 2b84add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/coco/inspect_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@
"* For each feature map cell, pick any sorting order for the anchors of different ratios. Here we match the order of ratios passed to the function.\n",
"\n",
"**Anchor Stride:**\n",
"In the FPN architecture, feature maps at the first few layers are high resolution. For example, if the input image is 1024x1024 then the feature meap of the first layer is 256x256, which generates about 200K anchors (256*256*3). These anchors are 32x32 pixels and their stride relative to image pixels is 4 pixels, so there is a lot of overlap. We can reduce the load significantly if we generate anchors for every other cell in the feature map. A stride of 2 will cut the number of anchors by 4, for example. \n",
"In the FPN architecture, feature maps at the first few layers are high resolution. For example, if the input image is 1024x1024 then the feature map of the first layer is 256x256, which generates about 200K anchors (256x256x3). These anchors are 32x32 pixels and their stride relative to image pixels is 4 pixels, so there is a lot of overlap. We can reduce the load significantly if we generate anchors for every other cell in the feature map. A stride of 2 will cut the number of anchors by 4, for example. \n",
"\n",
"In this implementation we use an anchor stride of 2, which is different from the paper."
]
Expand Down

0 comments on commit 2b84add

Please sign in to comment.