mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Added object Detection & Tracking using conv-rnn layer on frames from video
This commit is contained in:
@ -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));
|
||||
|
Reference in New Issue
Block a user