Quantcast
Channel: Active questions tagged config - Stack Overflow
Viewing all articles
Browse latest Browse all 5049

how to give two inputs to yolo darknet cfg files?

$
0
0

I have developed a rgbd model for yolov2 tiny..So it requires two inputs rgb and depth ..feature extraction seperately and join the layer later..On using [route] I cannot get two inputsThis is the visual of my config file

x = Conv2D(16, (3,3), strides=(1,1), padding='same', name='conv_1', use_bias=False)(input_image)            self.convLayers+=1            x = BatchNormalization(name='norm_1')(x)            x = LeakyReLU(alpha=0.1)(x)            Depthx = MaxPooling2D(pool_size=(2, 2))(x)            x = Conv2D(16, (3,3), strides=(1,1), padding='same', name='conv_2', use_bias=False)(input_image)            self.convLayers+=1            x = BatchNormalization(name='norm_1')(x)            x = LeakyReLU(alpha=0.1)(x)            Rgbx = MaxPooling2D(pool_size=(2, 2))(x)            # Fuse Layer            x = concatenate([Depthx, Rgbx])            x=Conv2D(16, (1,1), strides=(1,1), padding='same', name='conv_3', use_bias=False)(x)            self.convLayers+=1            x = BatchNormalization(name='norm_1')(x)            x = LeakyReLU(alpha=0.1)(x)            x = MaxPooling2D(pool_size=(2, 2))(x)

I need to write a config file for this model...Any kind of knowledge in config file writing is welcomeThanks in advance


Viewing all articles
Browse latest Browse all 5049

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>