diff --git a/samples/coco/inspect_data.ipynb b/samples/coco/inspect_data.ipynb index 96b8f17..d897482 100644 --- a/samples/coco/inspect_data.ipynb +++ b/samples/coco/inspect_data.ipynb @@ -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." ]