YAD2K icon indicating copy to clipboard operation
YAD2K copied to clipboard

YAD2K: Yet Another Darknet 2 Keras

Results 101 YAD2K issues
Sort by recently updated
recently updated
newest added

Hi there, I finally got the retrain_yolo.py to work on my own data, and I trained for a few hours and got the '.h5' files for each stage. But when...

Hi I'm trying to retrain a yolo model based on UNIMIB2016. I think the input image shape should be the model size which in this case should be (416., 416.)....

Hey, I am trying to retrain tiny YOLO to predict traffic signs using gtsdb. I have finished the tiny YOLO body, but when I followed the instructions to retrain the...

In the retrain_yolo.py, I noticed that the training label inputted in the model.fit() is an array of zeros. I will be appreciated if anyone can give me some explanation what...

I'm using Python 3.5 on Windows 10 64bit I get the error when running `python ./yad2k.py yolo.cfg yolo.weights model_data/yolo.h5` This is the error I get ``` Traceback (most recent call...

I wanted to achieve the benchmark of the yolov2 paper, which is a 78% mAP on voc2007+voc2012. I used retrain_yolo.py to train on voc2007+2012 and test on voc2007_test, but I...

function process_data(): orig_size = np.array([[image.width, image.height] for image in (images)]) and boxes_xy = [boxxy / orig_size[i] for i, boxxy in enumerate(boxes_xy)] boxes_wh = [boxwh / orig_size[i] for i, boxwh in...

Hi I used retrain.py to retrain a new yolo model for UNIMIB2016 food tray dataset. But the result was really bad. In the end of the training, the loss for...

I am converting a tiny YOLO-v2 model from Darknet to Keras using the yad2k. However, the predictions from the converted model are significantly worse than those of Darknet. So, I...

I've tried to train the model on my own dataset but when testing, the model will detect some obj for every picture, even there is no obj in the picture,...