All Projects → wmylxmj → Yolo V3 Iou

wmylxmj / Yolo V3 Iou

Licence: mit
YOLO3 动漫人脸检测 (Based on keras and tensorflow) 2019-1-19

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Yolo V3 Iou

Mobilenet Yolo
MobileNetV2-YoloV3-Nano: 0.5BFlops 3MB HUAWEI P40: 6ms/img, YoloFace-500k:0.1Bflops 420KB🔥🔥🔥
Stars: ✭ 1,566 (+1250%)
Mutual labels:  object-detection, cnn, yolo, yolov3
Yolov3
Keras implementation of yolo v3 object detection.
Stars: ✭ 585 (+404.31%)
Mutual labels:  object-detection, cnn, yolov3
Easy Yolo
Yolo (Real time object detection) model training tutorial with deep learning neural networks
Stars: ✭ 98 (-15.52%)
Mutual labels:  object-detection, yolo, real-time
Tensorflow Yolo V3
Implementation of YOLO v3 object detector in Tensorflow (TF-Slim)
Stars: ✭ 862 (+643.1%)
Mutual labels:  object-detection, yolo, yolov3
Yolov5 ncnn
🍅 Deploy NCNN on mobile phones. Support Android and iOS. 移动端NCNN部署,支持Android与iOS。
Stars: ✭ 535 (+361.21%)
Mutual labels:  object-detection, yolo, yolov3
Keras Yolov3 Mobilenet
I transfer the backend of yolov3 into Mobilenetv1,VGG16,ResNet101 and ResNeXt101
Stars: ✭ 552 (+375.86%)
Mutual labels:  object-detection, yolo, yolov3
Yolo annotation tool
Annotation tool for YOLO in opencv
Stars: ✭ 17 (-85.34%)
Mutual labels:  object-detection, yolo, yolov3
Trainyourownyolo
Train a state-of-the-art yolov3 object detector from scratch!
Stars: ✭ 399 (+243.97%)
Mutual labels:  object-detection, yolo, yolov3
Yolo Vehicle Counter
This project aims to count every vehicle (motorcycle, bus, car, cycle, truck, train) detected in the input video using YOLOv3 object-detection algorithm.
Stars: ✭ 28 (-75.86%)
Mutual labels:  object-detection, yolo, yolov3
Tensornets
High level network definitions with pre-trained weights in TensorFlow
Stars: ✭ 982 (+746.55%)
Mutual labels:  object-detection, yolo, yolov3
Yolov3 tensorflow
Complete YOLO v3 TensorFlow implementation. Support training on your own dataset.
Stars: ✭ 1,498 (+1191.38%)
Mutual labels:  object-detection, yolov3, real-time
Bmw Yolov4 Training Automation
This repository allows you to get started with training a state-of-the-art Deep Learning model with little to no configuration needed! You provide your labeled dataset or label your dataset using our BMW-LabelTool-Lite and you can start the training right away and monitor it in many different ways like TensorBoard or a custom REST API and GUI. NoCode training with YOLOv4 and YOLOV3 has never been so easy.
Stars: ✭ 533 (+359.48%)
Mutual labels:  object-detection, yolo, yolov3
Tracking With Darkflow
Real-time people Multitracker using YOLO v2 and deep_sort with tensorflow
Stars: ✭ 515 (+343.97%)
Mutual labels:  object-detection, yolo, real-time
Yolov3 pytorch
Full implementation of YOLOv3 in PyTorch
Stars: ✭ 570 (+391.38%)
Mutual labels:  object-detection, yolo, yolov3
Yolo3 4 Py
A Python wrapper on Darknet. Compatible with YOLO V3.
Stars: ✭ 504 (+334.48%)
Mutual labels:  object-detection, yolo, yolov3
Yolo Tf2
yolo(all versions) implementation in keras and tensorflow 2.4
Stars: ✭ 695 (+499.14%)
Mutual labels:  object-detection, yolo, yolov3
Alturos.yolo
C# Yolo Darknet Wrapper (real-time object detection)
Stars: ✭ 308 (+165.52%)
Mutual labels:  object-detection, yolo, yolov3
Deep Sort Yolov4
People detection and optional tracking with Tensorflow backend.
Stars: ✭ 306 (+163.79%)
Mutual labels:  object-detection, yolo, yolov3
Yolov3
YOLOv3 in PyTorch > ONNX > CoreML > TFLite
Stars: ✭ 8,159 (+6933.62%)
Mutual labels:  object-detection, yolo, yolov3
Yolo tensorflow
🚖 Object Detection (YOLOv1) implentation in tensorflow, with training, testing and video features.
Stars: ✭ 45 (-61.21%)
Mutual labels:  object-detection, yolo, real-time

YOLO-V3-IOU

YOLO3 动漫人脸检测 2019-1-19

环境
  • tensorflow-gpu 1.12.0
  • Keras 2.2.4

数据集的准备

训练模型

  • 加载权重,将权重h5文件放入models文件夹
  • 最新权重下载地址:https://pan.baidu.com/s/1QKODAhRU_Rw5lpf8NcIR4g
  • 若重新开始训练,将load_pretrained置为False
  • 设置学习率,若重新训练,建议设0.001,若加载权重,建议设较小的学习率
  • 运行train.py

预测

  • 加载权重,将训练好的权重h5文件放入models文件夹
  • 运行run.py,对数据集进行预测输出,输出在outputs文件夹中
  • 预测新的图片
  1. from predict import YOLO
  2. from PIL import Image
  3. yolo = YOLO()
  4. img = Image.open(r'./test.jpg')
  5. output = yolo.detect_image(img)
  6. output.show()

Demo

模型

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].