layer_anchor_box_2d | R Documentation |
Wraps a custom layer for the SSD network
layer_anchor_box_2d(
object,
imageSize,
scale,
nextScale,
aspectRatios,
variances,
name = NULL,
trainable = TRUE
)
layer_anchor_box_3d(
object,
imageSize,
scale,
nextScale,
aspectRatios,
variances,
name = NULL,
trainable = TRUE
)
object |
Object to compose layer with. This is either a keras::keras_model_sequential to add the layer to, or another Layer which this layer will call. |
imageSize |
size of the image, passed to |
scale |
box scale, passed to |
nextScale |
box scale, passed to |
aspectRatios |
list of ratios used for the boxes,
passed to |
variances |
list of variances, passed to |
name |
The name of the layer |
trainable |
logical indicating if it is trainable or not |
a keras layer tensor
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.