From 594f7ce6aff73c3e7f55b6fc31ee9a13feb5e4ef Mon Sep 17 00:00:00 2001 From: AlexeyAB Date: Mon, 18 May 2020 20:59:15 +0300 Subject: [PATCH] Use [net] max_chart_loss=20 by default --- src/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.c b/src/parser.c index edfbe4dc..c94f4c78 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1118,7 +1118,7 @@ void parse_net_options(list *options, network *net) net->resize_step = option_find_float_quiet(options, "resize_step", 32); net->attention = option_find_int_quiet(options, "attention", 0); net->adversarial_lr = option_find_float_quiet(options, "adversarial_lr", 0); - net->max_chart_loss = option_find_float_quiet(options, "max_chart_loss", 5.0); + net->max_chart_loss = option_find_float_quiet(options, "max_chart_loss", 20.0); net->angle = option_find_float_quiet(options, "angle", 0); net->aspect = option_find_float_quiet(options, "aspect", 1);