Added object Detection & Tracking using conv-rnn layer on frames from video

This commit is contained in:
AlexeyAB
2019-03-02 03:32:24 +03:00
parent 50956447f8
commit 75f2a3e7cf
16 changed files with 962 additions and 187 deletions

View File

@ -354,6 +354,7 @@ convolutional_layer make_convolutional_layer(int batch, int steps, int h, int w,
l.pad = padding;
l.batch_normalize = batch_normalize;
l.learning_rate_scale = 1;
l.nweights = l.c*l.n*l.size*l.size;
l.weights = (float*)calloc(c * n * size * size, sizeof(float));
l.weight_updates = (float*)calloc(c * n * size * size, sizeof(float));