From 2fbb5677eff75d619cbfdb3c876121eb3b511b89 Mon Sep 17 00:00:00 2001 From: Guanghan Ning Date: Wed, 6 Jan 2016 11:13:39 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66b77a3d6ec..531ae0d35d4 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ For questions or issues please use the [Google Group](https://groups.google.com/ (3) Now we are able to train with new classes, but there is one more thing to deal with. In YOLO, the number of parameters of the second last layer is not arbitrary, instead it is defined by some other parameters including the number of classes, the side(number of splits of the whole image). Please read [the paper](http://arxiv.org/abs/1506.02640) - (5*2 + number_of_classes)*7*7, as an example, assuming no other parameters are modified. + (5 x 2 + number_of_classes) x 7 x 7, as an example, assuming no other parameters are modified. Therefore, in [cfg/yolo.cfg](https://github.com/Guanghan/darknet/blob/master/cfg/yolo.cfg), change the "output" in line 218, and "classes" in line 222.