kakutit

Results 4 comments of kakutit

I followed noirblack's approach but got error like below. ################################################## File "darknet.py", line 233, in model = Darknet("cfg/yolov3.cfg") File "darknet.py", line 168, in __init__ self.net_info, self.module_list = create_modules(self.blocks) File "darknet.py",...

i think your chainer's version is not 1.17.0(i guess your version should be the newest) maybe you can solve it by changing the chainer's version.

btw, i ran those codes with NVIDIA Geforce GTX1080Ti, if you have any recommendation to the environment, please tell me. thank you :)

solved. I changed image_generator.py file code to below from the 70th line "random_overlay_image" function. ================================================================================= def random_overlay_image(src_image, overlay_image, minimum_crop): src_h, src_w = src_image.shape[:2] overlay_h, overlay_w = overlay_image.shape[:2] shift_item_h, shift_item_w =...