ssd_keras icon indicating copy to clipboard operation
ssd_keras copied to clipboard

some questions about ssd.py

Open nsknsl opened this issue 8 years ago • 2 comments

In ssd.py, I found net['input'] = input_tensor net['conv1_1'] = Convolution2D(64, 3, 3, activation='relu', border_mode='same', name='conv1_1')(net['input'])

I know Convolution2D, but I can not understant it times (net['input']) ,and I did not find this usage in keras's document. Can you provide more details about this? Thank you!

nsknsl avatar Feb 17 '17 06:02 nsknsl

@nsknsl I believe, you need to read this part of Keras docs.

rykov8 avatar Feb 22 '17 14:02 rykov8

@rykov8 in your code,what do variances mean !!

priorbox = PriorBox(img_size, 30.0, aspect_ratios=[2], variances=[0.1, 0.1, 0.2, 0.2], name='conv4_3_norm_mbox_priorbox')

look forward your reply,thanks

hust-kevin avatar Dec 03 '17 05:12 hust-kevin