From c8ad33ceba05cbb60c5197e4db4d3bdef28edd6d Mon Sep 17 00:00:00 2001
From: Alexey <AlexeyAB@users.noreply.github.com>
Date: Mon, 04 Jun 2018 12:57:13 +0000
Subject: [PATCH] Update Readme.md

---
 src/parser.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/parser.c b/src/parser.c
index 188ba54..c1ee98c 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -268,7 +268,7 @@
 
 	char *a = option_find_str(options, "mask", 0);
 	int *mask = parse_yolo_mask(a, &num);
-	int max_boxes = option_find_int_quiet(options, "max", 30);
+	int max_boxes = option_find_int_quiet(options, "max", 90);
 	layer l = make_yolo_layer(params.batch, params.w, params.h, num, total, mask, classes, max_boxes);
 	if (l.outputs != params.inputs) {
 		printf("Error: l.outputs == params.inputs \n");
@@ -310,7 +310,7 @@
     int coords = option_find_int(options, "coords", 4);
     int classes = option_find_int(options, "classes", 20);
     int num = option_find_int(options, "num", 1);
-	int max_boxes = option_find_int_quiet(options, "max", 30);
+	int max_boxes = option_find_int_quiet(options, "max", 90);
 
     layer l = make_region_layer(params.batch, params.w, params.h, num, classes, coords, max_boxes);
 	if (l.outputs != params.inputs) {

--
Gitblit v1.10.0