From a45d17ffe3f6f3435228319171b2efda7484f01d Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Mon, 20 Jun 2016 05:37:21 +0000
Subject: [PATCH] yolo demo low latency

---
 cfg/darknet.cfg |   28 +++++++++-------------------
 1 files changed, 9 insertions(+), 19 deletions(-)

diff --git a/cfg/darknet.cfg b/cfg/darknet.cfg
index 64aab1e..a96f4d0 100644
--- a/cfg/darknet.cfg
+++ b/cfg/darknet.cfg
@@ -1,25 +1,17 @@
 [net]
-batch=256
+batch=128
 subdivisions=1
-height=256
-width=256
+height=224
+width=224
 channels=3
 momentum=0.9
 decay=0.0005
+max_crop=320
 
-learning_rate=0.01
-policy=step
-scale=.1
-step=100000
-max_batches=400000
-
-[crop]
-crop_height=224
-crop_width=224
-flip=1
-angle=0
-saturation=1
-exposure=1
+learning_rate=0.1
+policy=poly
+power=4
+max_batches=500000
 
 [convolutional]
 filters=16
@@ -96,14 +88,12 @@
 
 [avgpool]
 
-[dropout]
-probability=.5
-
 [connected]
 output=1000
 activation=leaky
 
 [softmax]
+groups=1
 
 [cost]
 type=sse

--
Gitblit v1.10.0