Johnny Arcitec
Johnny Arcitec
Okay, we just had a conversation in a different thread and it emerged that you've already trained COCO on both 012 and 123: https://github.com/WongKinYiu/PartialResidualNetworks/issues/7#issuecomment-544954638 I would have to check the...
Parses mask=... cfg text into an array of integers: https://github.com/AlexeyAB/darknet/blob/master/src/parser.c#L318-L337 Creates a yolo layer with mask param set to those masks: https://github.com/AlexeyAB/darknet/blob/master/src/yolo_layer.c#L13 The rest of yolo_layer.c seems to use the...
If this code analysis is correct, both of these configs are identical: **A:** ``` [yolo] anchors = 10,10 20,20, 30,30, 40,40, 50,50, 60,60 mask = 1,2,3 # uses 20x20, 30x30,...
Yes I found the missing puzzle piece now: https://github.com/AlexeyAB/darknet/blob/master/src/parser.c#L376-L389 Parser.c translates `anchors=` cfg into `l.biases` layer property array. And translates `mask=`cfg into an array of `biases` array offsets. So yes...
@WongKinYiu Here's a `.patch` to fix the cfg file: ``` $ diff -u orig.txt yolov3-tiny-prn.cfg --- orig.txt 2019-10-22 17:03:11.646135000 +0200 +++ yolov3-tiny-prn.cfg 2019-10-22 16:58:00.947191300 +0200 @@ -139,7 +139,7 @@ [yolo]...
Hello @AlexeyAB, thanks for answering in this topic. > It is just a bug in pjreddie repo. It doesn't increase accuracy. That's what @WongKinYiu said though. Here: https://github.com/WongKinYiu/PartialResidualNetworks/issues/7#issuecomment-544785382 _"however, for...
@AlexeyAB Yep overlapping anchors is valid since the mask just controls which anchor sizes the layer will try. But the problem here is different; that @WongKinYiu said that by deleting...
Whatever is causing this bug, it finally affected me too on Portmaster 1.0 and 1.0.2. `portmaster-core` would constantly go into a 100% CPU usage mode which was so severe that...
@WerWolv ImHex is an impressive tool, and I really appreciate the advanced analysis tools. But there's room to be a hex editor too, for an all-in-one solution. I utterly *hate*...
@WerWolv Oh! That's awesome. I am switching back to ImHex immediaely. I looked in the manual for that feature, and I did a search on the GitHub issues for it...