| | |
| | | int classes = option_find_int(options, "classes", 20); |
| | | int num = option_find_int(options, "num", 1); |
| | | |
| | | params.w = option_find_int(options, "side", params.w); |
| | | params.h = option_find_int(options, "side", params.h); |
| | | |
| | | layer l = make_region_layer(params.batch, params.w, params.h, num, classes, coords); |
| | | assert(l.outputs == params.inputs); |
| | | |
| | |
| | | n = n->next; |
| | | int count = 0; |
| | | free_section(s); |
| | | fprintf(stderr, "layer filters size input output\n"); |
| | | while(n){ |
| | | params.index = count; |
| | | fprintf(stderr, "%d: ", count); |
| | | fprintf(stderr, "%5d ", count); |
| | | s = (section *)n->val; |
| | | options = s->options; |
| | | layer l = {0}; |