tensorflow-yolov4-tflite icon indicating copy to clipboard operation
tensorflow-yolov4-tflite copied to clipboard

YOLOv4, YOLOv4-tiny, YOLOv3, YOLOv3-tiny Implemented in Tensorflow 2.0, Android. Convert YOLO v4 .weights tensorflow, tensorrt and tflite

Results 129 tensorflow-yolov4-tflite issues
Sort by recently updated
recently updated
newest added

The anchors defined for YOLOv4 tiny network are different than those given in original YOLOv4 tiny in darknet. [https://github.com/AlexeyAB/darknet/blob/master/cfg/yolov4-tiny.cfg](https://github.com/AlexeyAB/darknet/blob/master/cfg/yolov4-tiny.cfg) Original anchors are: anchors = 10,14, 23,27, 37,58, 81,82, 135,169, 344,319...

I am not able to download the weights from https://drive.google.com/open?id=1cewMfusmPjYWbrnuJRuKhPMwRe_b9PaT .. I get an error "This site can’t be reached The webpage at https://drive.google.com/open?id=1cewMfusmPjYWbrnuJRuKhPMwRe_b9PaT might be temporarily down or it...

Loading yolov4.weights for 80 classes works fine but I wanted to use yolov4.conv.137 for the custom number of classes (as this is available in the official darknet repo for training...

Does anyone train a model on their own data, convert it to tflite format, and apply it to Android?

I trained a custom yolov4 using darknet with 24 classes. Now how do i convert it to tensorflow and what all files should i change in order to do custom...

Getting nan as outputs of the model if I load pre-trained weights (yolov4.weights or yolov4.conv.137). Also getting nan in the training function (losses) after a few iterations if proceeding without...

A case where the learning rate suddenly changes to 'Nan' ; while training your own data set (FISRT_STAGE_EPOCHS) has been changed to 0; ![image](https://user-images.githubusercontent.com/70495121/102166505-3267a780-3ec7-11eb-8c1a-5bfd54863985.png)

Hi, cuz I'm using in flutter referring by this: https://pub.dev/packages/tflite I just used below command in flutter ``` res = await Tflite.loadModel( model: "assets/yolov4-416-fp32.tflite", labels: "assets/coco.txt", ); var recognitions =...

Hello! I am writing a program to recognize the contours of objects. Here is my code import cv2 import numpy as np frameW = 640 frameH = 480 cap =...

When I was calculating mAP with main.py, pycharm gave me this error. I've searched a lot of information, but I can't find a solution. Can anyone help me?