From 0713fd9784bbd0c67eb82df6f6e2c072a53e09e8 Mon Sep 17 00:00:00 2001
From: Alexey <AlexeyAB@users.noreply.github.com>
Date: Thu, 31 May 2018 11:20:19 +0000
Subject: [PATCH] Merge pull request #936 from IlyaOvodov/Fix_GrayScale_PR

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

diff --git a/src/shortcut_layer.c b/src/shortcut_layer.c
index 01e133b..87b4b08 100644
--- a/src/shortcut_layer.c
+++ b/src/shortcut_layer.c
@@ -38,8 +38,8 @@
 
 void resize_shortcut_layer(layer *l, int w, int h)
 {
-	assert(l->w == l->out_w);
-	assert(l->h == l->out_h);
+	//assert(l->w == l->out_w);
+	//assert(l->h == l->out_h);
 	l->w = l->out_w = w;
 	l->h = l->out_h = h;
 	l->outputs = w*h*l->out_c;

--
Gitblit v1.10.0